Files
mesa/tests/058-token-pasting-empty-arguments.c
T
Carl Worth 85b50e840d Add placeholder tokens to support pasting with empty arguments.
Along with a passing test to verify that this works.
2010-05-27 14:01:18 -07:00

6 lines
66 B
C

#define paste(x,y) x ## y
paste(a,b)
paste(a,)
paste(,b)
paste(,)