/trunk/Examples/test-suite/python/typedef_scope_runme.py
# · Python · 12 lines · 8 code · 4 blank · 0 comment · 2 complexity · b9804e721ce8b4f09be86a09f9c6957a MD5 · raw file
- import typedef_scope
- b = typedef_scope.Bar()
- x = b.test1(42,"hello")
- if x != 42:
- print "Failed!!"
- x = b.test2(42,"hello")
- if x != "hello":
- print "Failed!!"