Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 189 Bytes

macro-1-arg-accepts-void

File metadata and controls

5 lines (5 loc) · 189 Bytes
 
1
2
3
4
5
// x() should be considered one (blank) argument when there is a macro which
// has one parameter. It should produce "RIGHT" and not "RIGHT()", and no
// errors.
#define x(a) RIGHT a
x()