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
This commit is contained in:
Zack Weinberg 1999-04-06 21:31:13 +00:00
parent a458ad1df8
commit e8f5c18f1a

View File

@ -0,0 +1,18 @@
/* 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;
}