swig/Examples/test-suite/octave/smart_pointer_multi_runme.m
2020-08-27 17:19:13 +10:00

17 lines
183 B
Mathematica

smart_pointer_multi
f = Foo();
b = Bar(f);
s = Spam(b);
g = Grok(b);
s.x = 3;
if (s.getx() != 3)
error("failed");
endif
g.x = 4;
if (g.getx() != 4)
error("failed");
endif