Lines Matching defs:x1
37 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}}
38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}}
49 int x1;
50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}}
51 return &x2; // expected-warning{{Address of stack memory associated with local variable 'x1' returned}} expected-warning {{address of stack memory associated with local variable 'x1' returned}}
55 int x1;
56 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}}
57 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} expected-warning {{Address of stack memory associated with local variable 'x1' returned to caller}}
61 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}}
62 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}}