Home
last modified time | relevance | path

Searched refs:NotCopyMove (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.bind_front/
H A Dbind_front.pass.cpp45 struct NotCopyMove { struct
46 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()
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/function.objects/func.bind.partial/
H A Dbind_back.pass.cpp48 struct NotCopyMove { struct
49 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()