diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr35742.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr35742.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr35742.c b/gcc/testsuite/gcc.dg/pr35742.c new file mode 100644 index 000000000..609472792 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr35742.c @@ -0,0 +1,13 @@ +/* PR c/35742 */ +/* { dg-do compile } */ +/* { dg-options "-std=gnu99" } */ +/* { dg-bogus "not supported by" "" { target *-*-* } 0 } */ + +void +foo () +{ + for (;;) + ({break;})(); /* { dg-error "is not a function" } */ + for (;;) + ({continue;})(); /* { dg-error "is not a function" } */ +} |