Files
ANSLibs/swig-4.3.0/Examples/test-suite/errors/pp_macro_nargs.i

17 lines
137 B
OpenEdge ABL

%module xxx
#define foo(a,x) a x
#define bar(x) x
#define spam() /**/
foo(3)
foo(3,4,5)
bar()
bar(2,3)
spam(1)