Files
mesa/tests/057-empty-arguments.c
T
Carl Worth fb48fcdf9b Add test for macro invocations with empty arguments.
This case was recently solved on the take-2 branch.
2010-05-27 13:44:13 -07:00

7 lines
91 B
C

#define zero() success
zero()
#define one(x) success
one()
#define two(x,y) success
two(,)