Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 119 Bytes

macro-with-arg-as-macro-arg

File metadata and controls

5 lines (5 loc) · 119 Bytes
 
Mar 3, 2010
Mar 3, 2010
1
2
3
4
5
// Should produce "RIGHT" and not "l(b)" or whatnot.
#define bb(l) l
#define zz(c) c
#define qq(b) zz(bb(b))
qq(RIGHT)