blob: 9ffdf79ba0134893fd748febd04ea1f986539b9f [file] [log] [blame]
Argyrios Kyrtzidis8592b1d2008-09-09 20:56:12 +00001// RUN: clang -parse-noop -verify %s
Argyrios Kyrtzidis71b914b2008-09-09 20:38:47 +00002
3void f() {
4 int a;
5 while (a) ;
6 while (int x) ; // expected-error {{expected '=' after declarator}}
7 while (float x = 0) ;
8 if (const int x = a) ;
9 switch (int x = a+10) {}
10 for (; int x = ++a; ) ;
11}