1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c90 %s 2 3 int f (int z) 4 { 5 if (z > (int) sizeof (enum {a, b})) 6 return a; 7 return b; 8 } 9