summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_std_pair_using_runme.py
blob: 18f96223509b1f406256ec57fe24ffa82aac7c81 (plain)
1
2
3
4
5
6
7
8
9
from li_std_pair_using import *

one_tuple = ("one", "numero uno")
one = StringStringPair(one_tuple)
two_tuple = ("two", 2)
two = StringIntPair(two_tuple)

if bounce(one) != one_tuple:
    raise RuntimeError