massive typemap unification
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7676 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
0a405b10e8
commit
1c7c9e44f7
144 changed files with 6378 additions and 7248 deletions
17
SWIG/Examples/test-suite/python/li_implicit_runme.py
Normal file
17
SWIG/Examples/test-suite/python/li_implicit_runme.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from li_implicit import *
|
||||
b = B()
|
||||
ai = A(1)
|
||||
ad = A(2.0)
|
||||
ab = A(b)
|
||||
|
||||
ai, get(ai)
|
||||
ad, get(ad)
|
||||
ab, get(ab)
|
||||
|
||||
if get(ai) != get(1):
|
||||
raise RuntimeError,"bad implicit type"
|
||||
if get(ad) != get(2.0):
|
||||
raise RuntimeError,"bad implicit type"
|
||||
if get(ab) != get(b):
|
||||
raise RuntimeError,"bad implicit type"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue