add opensuse toolchain support, patch by Ismail Donmez!
[clang/stm8.git] / test / Parser / cxx-condition.cpp
blob552d82362461e4fe9821501dc6ccc4468f7b163a
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 void 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) ; // expected-warning{{empty body}}
9 switch (int x = a+10) {}
10 for (; int x = ++a; ) ;