freebsd-nq/test/Parser/if-scope-c90.c
2009-11-05 17:18:09 +00:00

9 lines
140 B
C

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