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

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