git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8089 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
129 B
Python
12 lines
129 B
Python
from naturalvar import *
|
|
|
|
f = Foo()
|
|
b = Bar()
|
|
|
|
b.f = f
|
|
|
|
cvar.s = "hello"
|
|
b.s = "hello"
|
|
|
|
if b.s != cvar.s:
|
|
raise RuntimeError
|