Searched refs:CustomMoveAssign (Results 1 – 3 of 3) sorted by relevance
38 static_assert(std::move_constructible<CustomMoveAssign>);39 static_assert(std::move_constructible<const CustomMoveAssign&>);40 static_assert(std::move_constructible<volatile CustomMoveAssign&>);41 static_assert(std::move_constructible<const CustomMoveAssign&&>);42 static_assert(std::move_constructible<volatile CustomMoveAssign&&>);51 static_assert(!std::move_constructible<const CustomMoveAssign>);52 static_assert(!std::move_constructible<volatile CustomMoveAssign>);
35 static_assert(std::copy_constructible<const CustomMoveAssign&>);36 static_assert(std::copy_constructible<volatile CustomMoveAssign&>);42 static_assert(!std::copy_constructible<CustomMoveAssign>);45 static_assert(!std::copy_constructible<const CustomMoveAssign>);46 static_assert(!std::copy_constructible<volatile CustomMoveAssign>);70 static_assert(!std::copy_constructible<const CustomMoveAssign&&>);71 static_assert(!std::copy_constructible<volatile CustomMoveAssign&&>);
25 struct CustomMoveAssign { struct26 CustomMoveAssign(CustomMoveAssign&&) noexcept;27 CustomMoveAssign& operator=(CustomMoveAssign&&) noexcept; argument