blob: a3991c45f24eeaa3c0f40b21441e91cc448f33eb [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -parse-noop -verify %s
Cedric Venet3d658642009-02-14 20:20:19 +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}