Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / libcxx / test / std / iterators / predef.iterators / move.iterators / move.sentinel / constraints.compile.pass.cpp
blob2811ff0e61ddf199ebf1982787d38b3a7e60e7ec
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, c++17
11 // <iterator>
13 // template<semiregular S>
14 // class move_sentinel;
16 #include <iterator>
18 template<class T>
19 concept HasMoveSentinel = requires {
20 typename std::move_sentinel<T>;
23 struct Semiregular {};
25 struct NotSemiregular {
26 NotSemiregular(int);
29 static_assert( HasMoveSentinel<int>);
30 static_assert( HasMoveSentinel<int*>);
31 static_assert( HasMoveSentinel<Semiregular>);
32 static_assert(!HasMoveSentinel<NotSemiregular>);