git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
42 lines
470 B
Mathematica
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
|