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