Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / numerics / numarray / template.mask.array / default.compile.fail.cpp
blobf22298bf9079ddd3c07af87b7ee1bcf199f29c83
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 mask_array
13 // mask_array() = delete;
15 #include <valarray>
16 #include <type_traits>
18 int main(int, char**)
20 std::mask_array<int> s;
22 return 0;