bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
11 lines
281 B
C
11 lines
281 B
C
/* Test for C99 __func__: of type const char []. */
|
|
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
|
|
/* { dg-do compile } */
|
|
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
|
|
|
|
void
|
|
foo (void)
|
|
{
|
|
char *p = __func__; /* { dg-error "discards" "__func__ pointer to const" } */
|
|
}
|