Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / test / std / numerics / numarray / template.gslice.array / default.compile.fail.cpp
blob4429367cf6c7983bde30b3f0428f7217ba8b0a90
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <valarray>
11 // template <class T> class gslice_array
13 // gslice_array() = delete;
15 #include <valarray>
16 #include <type_traits>
18 int main(int, char**)
20 std::gslice_array<int> gs;
22 return 0;