git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
11 lines
190 B
Python
11 lines
190 B
Python
import overload_extend
|
|
|
|
f = overload_extend.Foo()
|
|
if f.test(3) != 1:
|
|
raise RuntimeError
|
|
if f.test("hello") != 2:
|
|
raise RuntimeError
|
|
if f.test(3.5,2.5) != 3:
|
|
raise RuntimeError
|
|
|
|
|