1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: c++03, c++11, c++14, c++17
13 // template<semiregular S>
14 // class move_sentinel;
19 concept HasMoveSentinel
= requires
{
20 typename
std::move_sentinel
<T
>;
23 struct Semiregular
{};
25 struct NotSemiregular
{
29 static_assert( HasMoveSentinel
<int>);
30 static_assert( HasMoveSentinel
<int*>);
31 static_assert( HasMoveSentinel
<Semiregular
>);
32 static_assert(!HasMoveSentinel
<NotSemiregular
>);