Files
mesa/tests/059-token-pasting-integer.c
T
Carl Worth 886e05a35a Add test for token-pasting of integers.
This test was tricky to make pass in the take-2 branch. It ends up
passing already here with no additional effort, (since we are lexing
integers as string-valued token except when in the ST_IF state in the
lexer anyway).
2010-05-27 14:45:20 -07:00

5 lines
70 B
C

#define paste(x,y) x ## y
paste(1,2)
paste(1,000)
paste(identifier,2)