Searched refs:NCCTNT (Results 1 – 2 of 2) sorted by relevance
/external/clang/test/CXX/special/class.copy/ |
D | p25-0x.cpp | 105 struct NCCTNT : NonConstCopy, TNT {}; struct 107 static_assert(!__has_trivial_assign(NCCTNT), ""); 108 static_assert(!__is_trivially_assignable(NCCTNT, NCCTNT), ""); 109 static_assert(!__is_trivially_assignable(NCCTNT, NCCTNT &), ""); 110 static_assert(!__is_trivially_assignable(NCCTNT, const NCCTNT &), ""); 111 static_assert(!__is_trivially_assignable(NCCTNT, volatile NCCTNT &), ""); 112 static_assert(!__is_trivially_assignable(NCCTNT, NCCTNT &&), ""); 113 static_assert(!__is_trivially_assignable(NCCTNT, const NCCTNT &&), ""); 114 static_assert(!__is_trivially_assignable(NCCTNT, volatile NCCTNT &&), "");
|
D | p12-0x.cpp | 111 struct NCCTNT : NonConstCopy, TNT {}; struct 113 static_assert(!__has_trivial_copy(NCCTNT), ""); 114 static_assert(!__is_trivially_constructible(NCCTNT, NCCTNT), ""); 115 static_assert(!__is_trivially_constructible(NCCTNT, NCCTNT &), ""); 116 static_assert(!__is_trivially_constructible(NCCTNT, const NCCTNT &), ""); 117 static_assert(!__is_trivially_constructible(NCCTNT, volatile NCCTNT &), ""); 118 static_assert(!__is_trivially_constructible(NCCTNT, NCCTNT &&), ""); 119 static_assert(!__is_trivially_constructible(NCCTNT, const NCCTNT &&), ""); 120 static_assert(!__is_trivially_constructible(NCCTNT, volatile NCCTNT &&), "");
|