Searched refs:CopyAssignmentChecker (Results 1 – 1 of 1) sorted by relevance
94 struct CopyAssignmentChecker { struct95 CopyAssignmentChecker& operator=(const CopyAssignmentChecker&) requires C0<N> = default;96 CopyAssignmentChecker& operator=(const CopyAssignmentChecker&) requires C1<N> = delete;97 CopyAssignmentChecker& operator=(const CopyAssignmentChecker&) requires C2<N>;98 CopyAssignmentChecker& operator=(const CopyAssignmentChecker&);101 static_assert(__is_trivially_copyable(CopyAssignmentChecker<0>));103 static_assert(__is_trivially_copyable(CopyAssignmentChecker<1>));104 static_assert(!__is_trivially_copyable(CopyAssignmentChecker<2>));105 static_assert(!__is_trivially_copyable(CopyAssignmentChecker<3>));106 static_assert(__is_trivial(CopyAssignmentChecker<0>));[all …]