diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/c99-func-2.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-func-2.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/c99-func-2.c b/gcc/testsuite/gcc.dg/c99-func-2.c new file mode 100644 index 0000000..11737d6 --- /dev/null +++ b/gcc/testsuite/gcc.dg/c99-func-2.c @@ -0,0 +1,11 @@ +/* Test for C99 __func__: not a string constant. */ +/* Origin: Joseph Myers <jsm28@cam.ac.uk> */ +/* { dg-do compile } */ +/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ + +void +foo (void) +{ + __func__ "foo"; /* { dg-bogus "warning" "warning in place of error" } */ + /* { dg-error "parse error" "__func__ not string constant" { xfail *-*-* } 9 } */ +} |