Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:T2

7 struct T2 {
8 ~T2();
10 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
28 static T2 t2;
33 T2 t2;
35 static_assert(!__has_trivial_destructor(T7), "t2 does not have a trivial destructor!");
37 struct T8 : T2 {
39 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");