Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:get2

218     int get2() { return num; }
261 A a17(a17.get2()); // expected-warning {{variable 'a17' is uninitialized when used within its own initialization}}
275 A *a27 = new A(a27->get2()); // expected-warning {{variable 'a27' is uninitialized when used within its own initialization}}
325 A a17(a17.get2()); // expected-warning {{variable 'a17' is uninitialized when used within its own initialization}}
337 A *a27 = new A(a27->get2()); // expected-warning {{variable 'a27' is uninitialized when used within its own initialization}}
391 T(bool (*)[17]) : a(a.get2()) {} // expected-warning {{field 'a' is uninitialized when used here}}
403 T(bool (*)[27]) : ptr_a(new A(ptr_a->get2())) {} // expected-warning {{field 'ptr_a' is uninitialized when used here}}