blob: f8a06a0e750952aeaea1d21bb68edf1821b41b84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Test for C99 __func__: not merging with string literals. */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do run } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
extern void abort (void);
extern void exit (int);
int
main (void)
{
if ("main" == __func__)
abort ();
else
exit (0);
}
|