Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / test / std / numerics / numarray / template.indirect.array / default.compile.fail.cpp
blob988cdad9048d4bf912117d3bb7ec52f37a8ebbef
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 indirect_array
13 // indirect_array() = delete;
15 #include <valarray>
16 #include <type_traits>
18 int main(int, char**)
20 std::indirect_array<int> ia;
22 return 0;