summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/naturalvar_runme.py
blob: a0481ec6034373b0de2f7a02df0504bc75886210 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from naturalvar import *

f = Foo()
b = Bar()

b.f = f

cvar.s = "hello"
b.s = "hello"

if b.s != cvar.s:
    raise RuntimeError