swig/Examples/test-suite/octave/smart_pointer_not_runme.m
Xavier Delacour 393391965c Initial commit of Octave module.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2008-03-01 23:35:44 +00:00

42 lines
470 B
Mathematica

smart_pointer_not
f = Foo();
b = Bar(f);
s = Spam(f);
g = Grok(f);
try
x = b.x;
error("Error! b.x")
catch
end_try_catch
try
x = s.x;
error("Error! s.x")
catch
end_try_catch
try
x = g.x;
error("Error! g.x")
catch
end_try_catch
try
x = b.getx();
error("Error! b.getx()")
catch
end_try_catch
try
x = s.getx();
error("Error! s.getx()")
catch
end_try_catch
try
x = g.getx();
error("Error! g.getx()")
catch
end_try_catch