blob: 43a3676ca487eaa3421c8cf8856ece2458a8d9b6 [file] [log] [blame]
Chris Lattner3b427b32007-10-11 00:18:28 +00001// RUN: clang -fsyntax-only -verify --std=c90 %s
Chris Lattner22153252007-08-26 23:08:06 +00002
3int f (int z)
4{
5 if (z > sizeof (enum {a, b}))
6 return a;
7 return b;
8}