1 /* Test for recognition of digraphs: should be recognized in C94 and C99
2 mode, but not in C90 mode. Also check correct stringizing.
4 /* Origin: Joseph Myers <jsm28@cam.ac.uk> */
6 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
10 #define foo(p, q) str(p %:%: q)
12 extern void abort (void);
13 extern int strcmp (const char *, const char *);
18 const char *t
= foo (1, 2);
19 const char *u
= str (<:);
20 if (strcmp (t
, "12") || strcmp (u
, "<:"))