aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/tr-str.c
blob: bc749ba10351364b5f6c824afd34e49c0cff9c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Test whether traditional stringify works.  */
/* { dg-do run } */
/* { dg-options "-traditional" } */
#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);
}