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

int f (int z)
{ 
   if (z > (int) sizeof (enum {a, b}))
      return a;
   return b; // expected-error{{use of undeclared identifier}}
}
OpenPOWER on IntegriCloud