blob: 5fa920a9f654f42e5c5ec55f1c34d0818a292936 [file] [log] [blame]
/* Test for C99 __func__: not merging with string literals. */
/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
/* { dg-do run { xfail *-*-* } } */
/* { 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);
}