freebsd-dev/test/Parser/control-scope.c

9 lines
273 B
C
Raw Normal View History

2009-11-18 14:59:57 +00:00
// RUN: clang-cc %s -std=c90 -verify
2009-06-02 17:58:47 +00:00
// RUN: clang-cc %s -std=c99
int f (int z) {
if (z + sizeof (enum {a})) // expected-note {{previous definition is here}}
return 1 + sizeof (enum {a}); // expected-error {{redefinition of enumerator 'a'}}
return 0;
}