Add test with extra whitespace in macro defintions and invocations.

This whitespace is not dealt with in an elegant way yet so this test
does not pass currently.
This commit is contained in:
Carl Worth 2010-05-14 16:58:00 -07:00
parent 3596bb149e
commit 4eb2ccf261

View file

@ -0,0 +1,8 @@
#define noargs() 1
# define onearg(foo) foo
# define twoargs( x , y ) x y
# define threeargs( a , b , c ) a b c
noargs ( )
onearg ( 2 )
twoargs ( 3 , 4 )
threeargs ( 5 , 6 , 7 )