Searched refs:CustomMoveCtor (Results 1 – 3 of 3) sorted by relevance
32 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>);
33 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&&>);
13 struct CustomMoveCtor { struct14 CustomMoveCtor(CustomMoveCtor&&) noexcept;