summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/typedef_scope_runme.py
blob: edd3e9f3a2c77210a1bdd727482719e253a4d5c9 (plain)
1
2
3
4
5
6
7
8
9
10
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!!"