git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
332 B
Python
21 lines
332 B
Python
from smart_pointer_overload import *
|
|
|
|
f = Foo()
|
|
b = Bar(f)
|
|
|
|
|
|
if f.test(3) != 1:
|
|
raise RuntimeError
|
|
if f.test(3.5) != 2:
|
|
raise RuntimeError
|
|
if f.test("hello") != 3:
|
|
raise RuntimeError
|
|
|
|
if b.test(3) != 1:
|
|
raise RuntimeError
|
|
if b.test(3.5) != 2:
|
|
raise RuntimeError
|
|
if b.test("hello") != 3:
|
|
raise RuntimeError
|
|
|
|
|