blob: 552d82362461e4fe9821501dc6ccc4468f7b163a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | // RUN: %clang_cc1 -fsyntax-only -verify %s
void f() {
  int a;
  while (a) ;
  while (int x) ; // expected-error {{expected '=' after declarator}}
  while (float x = 0) ;
  if (const int x = a) ; // expected-warning{{empty body}}
  switch (int x = a+10) {}
  for (; int x = ++a; ) ;
}
 |