Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:uninitialized

132 // A silly class used to demonstrate field-is-uninitialized in constructors with
143 : A(A), // expected-warning {{field 'A' is uninitialized when used here}}
144 B((((B)))), // expected-warning {{field 'B' is uninitialized when used here}}
145 C(A && InitializeUsingSelfTest::C), // expected-warning {{field 'C' is uninitialized when used here}}
146 D(D, // expected-warning {{field 'D' is uninitialized when used here}}
147 D), // expected-warning {{field 'D' is uninitialized when used here}}
148 E(IntParam(E)) {} // expected-warning {{field 'E' is uninitialized when used here}}
168 B(B), // expected-warning {{field 'B' is uninitialized when used here}}
169 C(rhs.C || C) { } // expected-warning {{field 'C' is uninitialized when used here}}
301 struct S1 { union { int n; }; S1() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}
302 struct S2 { union { union { int n; }; char c; }; S2() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}
303 struct S3 { struct { int n; }; S3() : n(n) {} }; // expected-warning {{field 'n' is uninitialized when used here}}