Lines Matching full:uninitialized
127 // A silly class used to demonstrate field-is-uninitialized in constructors with
138 : A(A), // expected-warning {{field 'A' is uninitialized when used here}}
139 B((((B)))), // expected-warning {{field 'B' is uninitialized when used here}}
140 C(A && InitializeUsingSelfTest::C), // expected-warning {{field 'C' is uninitialized when used here}}
141 D(D, // expected-warning {{field 'D' is uninitialized when used here}}
142 D), // expected-warning {{field 'D' is uninitialized when used here}}
143 E(IntParam(E)) {} // expected-warning {{field 'E' is uninitialized when used here}}
163 B(B), // expected-warning {{field 'B' is uninitialized when used here}}
164 C(rhs.C || C) { } // expected-warning {{field 'C' is uninitialized when used here}}
290 struct S1 { union { int n; }; S1() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}
291 struct S2 { union { union { int n; }; char c; }; S2() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}
292 struct S3 { struct { int n; }; S3() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}