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

9 lines
184 B
C
Raw Normal View History

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