blob: 1623eb000938354ec193d58b52ff341728220254 [file] [log] [blame]
// RUN: clang -parse-ast -verify --std=c90 %s
int f (int z)
{
if (z > sizeof (enum {a, b}))
return a;
return b;
}