aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/c99-func-4.c
blob: 10ec19566f8762ae0e918ef97b3cad02efa41822 (plain)
1
2
3
4
5
6
7
8
9
10
/* 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" } */
}