8sa1-gcc/gcc/testsuite/gcc.dg/990407-1.c
Zack Weinberg e8f5c18f1a Regression test for current cpplib bug.
Should not fail if you are using cccp.
Expect it to fail if you are using cpplib.

From-SVN: r26224
1999-04-06 21:31:13 +00:00

19 lines
263 B
C

/* Regression test for a cpplib macro-expansion bug where
`@' becomes `@@' when stringified. */
/* { dg-do run } */
#include <string.h>
#define STR(x) #x
char *a = STR(@foo), *b = "@foo";
int
main(void)
{
if (strcmp (a, b))
abort ();
return 0;
}