Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 137 Bytes

macro-empty-arg

File metadata and controls

5 lines (5 loc) · 137 Bytes
 
Apr 9, 2009
Apr 9, 2009
1
2
3
4
5
/* This should produce "RIGHT RIGHT" instead of "WRONG WRONG" (etc) */
#define x(WRONG,ANDWRONG) WRONG ANDWRONG
x(RIGHT,)
x(,RIGHT)
x(,)