Searched refs:NotCopyMove (Results 1 – 2 of 2) sorted by relevance
45 struct NotCopyMove { struct46 NotCopyMove() = delete;47 NotCopyMove(const NotCopyMove&) = delete;48 NotCopyMove(NotCopyMove&&) = delete;379 static_assert(!std::is_constructible_v<NotCopyMove, NotCopyMove&>); in test()380 static_assert(!std::is_move_constructible_v<NotCopyMove>); in test()381 static_assert(!is_bind_frontable<NotCopyMove>::value); in test()382 static_assert(!is_bind_frontable<NotCopyMove&>::value); in test()
48 struct NotCopyMove { struct49 NotCopyMove() = delete;50 NotCopyMove(const NotCopyMove&) = delete;51 NotCopyMove(NotCopyMove&&) = delete;382 static_assert(!std::is_constructible_v<NotCopyMove, NotCopyMove&>); in test()383 static_assert(!std::is_move_constructible_v<NotCopyMove>); in test()384 static_assert(!is_bind_backable<NotCopyMove>::value); in test()385 static_assert(!is_bind_backable<NotCopyMove&>::value); in test()