Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:T2

6 struct T2 {
7 ~T2();
9 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
27 static T2 t2;
32 T2 t2;
34 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
36 struct T8 : T2 {
38 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");