diff options
Diffstat (limited to 'clang/test/Parser/if-scope-c99.c')
-rw-r--r-- | clang/test/Parser/if-scope-c99.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/Parser/if-scope-c99.c b/clang/test/Parser/if-scope-c99.c new file mode 100644 index 0000000..63f82e0 --- /dev/null +++ b/clang/test/Parser/if-scope-c99.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -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}} +} |