Lines Matching defs:x
4 int x; in test() local
6 if (int x=0) ++x; in test() local
9 while (arr x={0}) ; // expected-error {{an array type is not allowed here}} in test() local
14 …while (struct S x=s) ; // expected-error {{value of type 'struct S' is not contextually convertibl… in test() local
19 while (struct NewS *x=0) ; in test() local
24 if (int x=0) { // expected-note 2 {{previous definition is here}} in test() local
25 int x; // expected-error {{redefinition of 'x'}} in test() local
28 int x; // expected-error {{redefinition of 'x'}} in test() local
29 …while (int x=0) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definiti… in test() local
30 …while (int x=0) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous defi… in test() local
31 …for (int x; int x=0; ) ; // expected-error {{redefinition of 'x'}} expected-note {{previous defini… in test() local
32 …for (int x; ; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous definiti… in test() local
33 …for (; int x=0; ) int x; // expected-error {{redefinition of 'x'}} expected-note {{previous defini… in test() local
34 …for (; int x=0; ) { int x; } // expected-error {{redefinition of 'x'}} expected-note {{previous de… in test() local
35 …switch (int x=0) { default: int x; } // expected-error {{redefinition of 'x'}} expected-note {{pre… in test() local