Home | History | Annotate | Download | only in diagnostics

Lines Matching full:note

10   S &r = *p;   //expected-note {{'r' initialized here}}
12 //expected-note@-1{{Taking false branch}}
13 //expected-note@-2{{Assuming 'p' is null}}
15 // expected-note@-1{{Access to field 'y' results in a dereference of a null pointer (loaded from variable 'r')}}
19 int &ref = *ptr; // expected-note {{'ref' initialized here}}
21 // expected-note@-1{{Assuming 'ptr' is null}}
22 // expected-note@-2{{Taking false branch}}
27 // expected-note@-1{{Forming reference to null pointer}}
31 int *p = 0; // expected-note {{'p' initialized to a null pointer value}}
32 int *const &p2 = p; // expected-note{{'p2' initialized here}}
33 int *p3 = p2; // expected-note {{'p3' initialized to a null pointer value}}
35 // expected-note@-1{{Dereference of null pointer}}
39 int *p = 0; // expected-note {{'p' initialized to a null pointer value}}
40 int *const &p2 = p;// expected-note{{'p2' initialized here}}
42 // expected-note@-1{{Dereference of null pointer}}