mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 04:50:11 +01:00
This whitespace is not dealt with in an elegant way yet so this test does not pass currently.
8 lines
191 B
C
8 lines
191 B
C
#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 )
|