aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/static_const_member_2_runme.py
blob: 738daf4651f34a1276e8771952badf8a059c4ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from static_const_member_2 import *

c = Test_int()
try:
    a = c.forward_field
    a = c.current_profile
    a = c.RightIndex
    a = Test_int.backward_field
    a = Test_int.LeftIndex
    a = Test_int.cavity_flags
except:
    print "Failed!!"