blob: 342347381d04d4152160f1c1d6a5c7ea2b298ff3 [file] [log] [blame]
/* Test whether traditional stringify works. */
/* { dg-do run } */
/* { dg-options "-traditional-cpp" } */
#define foo(a, b) c="a"; d="b";
extern void abort ();
int main ()
{
char *c, *d;
foo (p, q);
if (c[0] != 'p' || d[0] != 'q')
abort ();
exit (0);
}