freebsd-dev/test/Parser/if-scope-c90.c
2009-06-02 17:58:47 +00:00

9 lines
135 B
C

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