Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:getB

172 B getB() { return B(); };
173 B getB(int x) { return B(); };
174 B getB(int *x) { return B(); };
175 B getB(B *b) { return B(); };
186 B b4 = getB();
187 B b5 = getB(&b5);
188 B b6 = getB(&b6.x);
195 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
196 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
197 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}
217 B b4 = getB();
218 B b5 = getB(&b5);
219 B b6 = getB(&b6.x);
222 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
223 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
224 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}