Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / utilities / variant / variant.variant / variant_empty.verify.cpp
blob3d985e09c49b50fcc9f038546a9d6f9b6d4c8e0f
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 // UNSUPPORTED: c++03, c++11, c++14
11 // <variant>
13 // template <class ...Types> class variant;
15 #include <variant>
17 #include "test_macros.h"
18 #include "variant_test_helpers.h"
20 int main(int, char**)
22 // expected-error@variant:* 1 {{static assertion failed}}
23 std::variant<> v; // expected-note {{requested here}}
25 return 0;