mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 22:38:56 -04:00

worked for C anyway. Also kills the -cc1 options -parse-noop and -parse-print-callbacks. llvm-svn: 109392
12 lines
287 B
C++
12 lines
287 B
C++
// 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; ) ;
|
|
}
|