No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / cpp / macro4.c
blobceaf8ddbfa419988035a8f44c2cdf907a51ba1f0
1 /* Copyright (C) 2000 Free Software Foundation, Inc. */
3 /* { dg-do preprocess } */
5 /* Test source Neil Booth. */
7 #define glue(x, y) x ## y
8 #define xglue(x, y) glue (x, y)
10 /* Should expand to glue (1, 2), then 12. */
11 #if glue (xgl, ue) (1, 2) != 12
12 #error glue macro
13 #endif