]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c99-func-2.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c99-func-2.c
CommitLineData
9052d3be
JM
1/* Test for C99 __func__: not a string constant. */
2/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
3/* { dg-do compile } */
4/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5
6void
7foo (void)
8{
04466541 9 __func__ "foo"; /* { dg-error "parse error|syntax error|expected" "before string constant" } */
9052d3be 10}