blob: ebf4c9b09104036e43a191a31d8388d2c33f40e2 [file] [log] [blame]
from smart_pointer_multi_typedef import *
f = Foo()
b = Bar(f)
s = Spam(b)
g = Grok(b)
s.x = 3
if s.getx() != 3:
raise RuntimeError
g.x = 4
if g.getx() != 4:
raise RuntimeError