Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 105 Bytes

nested-macro-args

File metadata and controls

6 lines (4 loc) · 105 Bytes
 
1
2
3
4
5
/* This should produce "RIGHT" instead of "WRONG" */
#define x(a) a
#define y(WRONG) x(WRONG)
y(RIGHT)