import source from 1.3.40
[external/swig.git] / Examples / test-suite / python / typedef_scope_runme.py
1 import typedef_scope
2
3 b = typedef_scope.Bar()
4 x = b.test1(42,"hello")
5 if x != 42:
6     print "Failed!!"
7
8 x = b.test2(42,"hello")
9 if x != "hello":
10     print "Failed!!"
11     
12