Home
last modified time | relevance | path

Searched refs:CustomMoveCtor (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.moveconstructible/
H A Dmove_constructible.compile.pass.cpp32 static_assert(std::move_constructible<CustomMoveCtor>);
34 static_assert(std::move_constructible<const CustomMoveCtor&>);
35 static_assert(std::move_constructible<volatile CustomMoveCtor&>);
36 static_assert(std::move_constructible<const CustomMoveCtor&&>);
37 static_assert(std::move_constructible<volatile CustomMoveCtor&&>);
49 static_assert(!std::move_constructible<const CustomMoveCtor>);
50 static_assert(!std::move_constructible<volatile CustomMoveCtor>);
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.copyconstructible/
H A Dcopy_constructible.compile.pass.cpp33 static_assert(std::copy_constructible<const CustomMoveCtor&>);
34 static_assert(std::copy_constructible<volatile CustomMoveCtor&>);
43 static_assert(!std::copy_constructible<const CustomMoveCtor>);
44 static_assert(!std::copy_constructible<volatile CustomMoveCtor>);
66 static_assert(!std::copy_constructible<CustomMoveCtor>);
68 static_assert(!std::copy_constructible<const CustomMoveCtor&&>);
69 static_assert(!std::copy_constructible<volatile CustomMoveCtor&&>);
/llvm-project-15.0.7/libcxx/test/support/type_classification/
H A Dmoveconstructible.h13 struct CustomMoveCtor { struct
14 CustomMoveCtor(CustomMoveCtor&&) noexcept;