blob: 6040281cb0f7373277d52cbb124df629ed4ee9de [file] [log] [blame]
Chris Lattner22153252007-08-26 23:08:06 +00001// RUN: clang -parse-ast-check --std=c90 %s
2
3int f (int z)
4{
5 if (z > sizeof (enum {a, b}))
6 return a;
7 return b;
8}