2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / paste11.c
blob18530b3448ad64fc23d547c3f2cffb8973c2f967
1 /* Copyright (C) 2000 Free Software Foundation, Inc. */
3 /* { dg-do preprocess } */
5 /* Test correct pasting of identifiers and numbers. We can paste any
6 number, as long as no '.', '-' or '+' appears in its spelling. */
8 #define glue(x, y) x ## y
10 glue (ident, 12) /* OK. */
11 glue (ident, 12e3) /* OK. */
12 glue (ident, 12e+3) /* { dg-warning "valid preprocessing tok" } */
13 glue (ident, 12e-3) /* { dg-warning "valid preprocessing tok" } */
14 glue (ident, 1.2) /* { dg-warning "valid preprocessing tok" } */
15 glue (ident, .12) /* { dg-warning "valid preprocessing tok" } */