Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:here

76   U() :  a(1), // expected-note {{previous initialization is here}}
102 // expected-note {{declared here}} \
103 // expected-note {{declared here}}
116 M m; // expected-note {{member is declared here}}
136 : A(A), // expected-warning {{field is uninitialized when used here}}
137 B((((B)))), // expected-warning {{field is uninitialized when used here}}
138 C(A && InitializeUsingSelfTest::C), // expected-warning {{field is uninitialized when used here}}
139 D(D, // expected-warning {{field is uninitialized when used here}}
140 D) {} // expected-warning {{field is uninitialized when used here}}
160 B(B), // expected-warning {{field is uninitialized when used here}}
161 C(rhs.C || C) { } // expected-warning {{field is uninitialized when used here}}
230 // Lots of questionable recovery here; errors can change.