git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
24 lines
314 B
Mathematica
24 lines
314 B
Mathematica
compactdefaultargs
|
|
|
|
defaults1 = Defaults1(1000);
|
|
defaults1 = Defaults1();
|
|
|
|
if (defaults1.ret(10.0) != 10.0)
|
|
error
|
|
endif
|
|
|
|
if (defaults1.ret() != -1.0)
|
|
error
|
|
endif
|
|
|
|
defaults2 = Defaults2(1000);
|
|
defaults2 = Defaults2();
|
|
|
|
if (defaults2.ret(10.0) != 10.0)
|
|
error
|
|
endif
|
|
|
|
if (defaults2.ret() != -1.0)
|
|
error
|
|
endif
|
|
|