llvm-project/clang/test/Parser/if-scope-c99.c

9 lines
176 B
C

// RUN: clang -parse-ast-check --std=c99 %s
int f (int z)
{
if (z > sizeof (enum {a, b}))
return a;
return b; // expected-error{{use of undeclared identifier}}
}