git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
19 lines
245 B
Mathematica
19 lines
245 B
Mathematica
overload_extend
|
|
|
|
f = overload_extend.Foo();
|
|
if (f.test() != 0)
|
|
error
|
|
endif
|
|
if (f.test(3) != 1)
|
|
error
|
|
endif
|
|
if (f.test("hello") != 2)
|
|
error
|
|
endif
|
|
if (f.test(3,2) != 5)
|
|
error
|
|
endif
|
|
if (f.test(3.1)-.1 != 1003) # :)
|
|
error
|
|
endif
|
|
|