Searched defs:getPtrB (Results 1 - 1 of 1) sorted by relevance

/external/clang/test/SemaCXX/
H A Duninitialized.cpp447 B* getPtrB() { return 0; }; function
448 B* getPtrB(int x) { return 0; }; function
449 B* getPtrB(int *x) { return 0; }; function
450 B* getPtrB(B **b) { return 0; }; function
471 B* b13 = getPtrB();
472 B* b14 = getPtrB(&b14);
477 B* b15 = getPtrB(b15->x); // expected-warning {{variable 'b15' is uninitialized when used within its own initialization}}
478 B* b16 = getPtrB(b16->y); // expected-warning {{variable 'b16' is uninitialized when used within its own initialization}}
506 B* b13 = getPtrB();
507 B* b14 = getPtrB(
[all...]

Completed in 55 milliseconds