Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:warning

12   int d = b; // expected-warning {{global constructor}}
15 int e = opaque_int(); // expected-warning {{global constructor}}
16 int f = b; // expected-warning {{global constructor}}
24 A d = { opaque_int() }; // expected-warning {{global constructor}}
26 A f = A(a); // expected-warning {{global constructor}}
27 A g(a); // expected-warning {{global constructor}}
34 A a; // expected-warning {{global constructor}}
35 A b[10]; // expected-warning {{global constructor}}
36 A c[10][10]; // expected-warning {{global constructor}}
45 A a; // expected-warning {{global destructor}}
46 A b[10]; // expected-warning {{global destructor}}
47 A c[10][10]; // expected-warning {{global destructor}}
111 C c; // expected-warning {{global destructor}}
125 // No warning is expected. This used to crash.