diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/label-compound-stmt-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/label-compound-stmt-1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/label-compound-stmt-1.c b/gcc/testsuite/gcc.dg/label-compound-stmt-1.c new file mode 100644 index 00000000000..71411631ba2 --- /dev/null +++ b/gcc/testsuite/gcc.dg/label-compound-stmt-1.c @@ -0,0 +1,7 @@ +/* Test that labels at ends of compound statements are hard errors. */ +/* Origin: Joseph Myers <jsm@polyomino.org.uk> */ +/* { dg-do compile } */ +/* { dg-options "" } */ + +void f(void) { g: } /* { dg-bogus "warning" "warning in place of error" } */ +/* { dg-error "label|parse|syntax" "label at end of compound statement" { target *-*-* } 6 } */ |