Lines Matching full:uninitialized
9 // uninitialized.
11 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}}
12 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}}
14 int d = ({ d + d ;}); // expected-warning {{variable 'd' is uninitialized when used within its own initialization}}
16 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}}
17 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}}
32 S(bool (*)[1]) : x(x) {} // expected-warning {{field is uninitialized when used here}}
33 S(bool (*)[2]) : x(x + 1) {} // expected-warning {{field is uninitialized when used here}}
34 S(bool (*)[3]) : x(x + x) {} // expected-warning {{field is uninitialized when used here}}
35 S(bool (*)[4]) : x(static_cast<long>(x) + 1) {} // expected-warning {{field is uninitialized when used here}}