llvm-capstone/clang/test/Parser/if-scope-c90.c
Chris Lattner 5e4c75f4ef rename -parse-ast-print to -ast-print
rename -parse-ast-dump to -ast-dump
remove -parse-ast, which is redundant with -fsyntax-only

llvm-svn: 42852
2007-10-11 00:18:28 +00:00

9 lines
132 B
C

// RUN: clang -fsyntax-only -verify --std=c90 %s
int f (int z)
{
if (z > sizeof (enum {a, b}))
return a;
return b;
}