summaryrefslogtreecommitdiffstats
path: root/test/Parser/cxx-condition.cpp
blob: a3991c45f24eeaa3c0f40b21441e91cc448f33eb (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 -parse-noop -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) ;
  switch (int x = a+10) {}
  for (; int x = ++a; ) ;
}
OpenPOWER on IntegriCloud