Commit e8f5c18f by Zack Weinberg

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
parent a458ad1d
/* 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment