Searched refs:TNT (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CXX/special/class.copy/
H A Dp12-0x.cpp68 struct TNT { struct
69 TNT(const TNT &) = default; // trivial
70 TNT(TNT &); // non-trivial
72 TNT(TNT &&) = default; // trivial
73 TNT(const TNT &&); // non-trivial
76 static_assert(!__has_trivial_copy(TNT), "li
[all...]
H A Dp25-0x.cpp62 struct TNT { struct
63 TNT &operator=(const TNT &) = default; // trivial
64 TNT &operator=(TNT &); // non-trivial
66 TNT &operator=(TNT &&) = default; // trivial
67 TNT &operator=(const TNT &&); // non-trivial
70 static_assert(!__has_trivial_assign(TNT), "li
[all...]

Completed in 1540 milliseconds