aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/if-scope-c90.c
blob: 43a3676ca487eaa3421c8cf8856ece2458a8d9b6 (plain)
1
2
3
4
5
6
7
8
// RUN: clang -fsyntax-only -verify --std=c90 %s

int f (int z)
{ 
   if (z > sizeof (enum {a, b}))
      return a;
   return b;
}