//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 // UNSUPPORTED: libcpp-no-concepts // template // concept indirectly_movable; #include #include "test_macros.h" struct IndirectlyMovableWithInt { int& operator*() const; }; struct Empty {}; struct MoveOnly { MoveOnly(MoveOnly&&) = default; MoveOnly(MoveOnly const&) = delete; MoveOnly& operator=(MoveOnly&&) = default; MoveOnly& operator=(MoveOnly const&) = delete; MoveOnly() = default; }; template struct PointerTo { using value_type = T; T& operator*() const; }; static_assert( std::indirectly_movable); static_assert( std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert( std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert( std::indirectly_movable); static_assert( std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert( std::indirectly_movable); static_assert( std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert(!std::indirectly_movable); static_assert( std::indirectly_movable, PointerTo>); static_assert( std::indirectly_movable>);