Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/c99-func-2.c @ 132:d34655255c78
update gcc-8.2
author | mir3636 |
---|---|
date | Thu, 25 Oct 2018 10:21:07 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 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 | |
6 void | |
7 foo (void) | |
8 { | |
9 __func__ "foo"; /* { dg-error "parse error|syntax error|expected" "before string constant" } */ | |
10 } |