blob: 73db9bfccd4e2594b6748a1effba23e5859d9f14 [file] [log] [blame]
// GROUPS passed miscellaneous
extern "C" void exit (int);
extern "C" int printf (char *, ...);
/* Make sure cp-lex.c handles these properly--if this links, that means
it emitted the strings instead of __FUNCTION__.0, etc. */
int
main()
{
char *a = __FUNCTION__;
char *b = __PRETTY_FUNCTION__;
printf ("PASS\n");
exit (0);
}