summaryrefslogtreecommitdiff
path: root/test/Parser/if-scope-c90.c
blob: 6040281cb0f7373277d52cbb124df629ed4ee9de (plain)
1
2
3
4
5
6
7
8
// RUN: clang -parse-ast-check --std=c90 %s

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