diff options
Diffstat (limited to 'Examples/test-suite/octave/smart_pointer_not_runme.m')
| -rw-r--r-- | Examples/test-suite/octave/smart_pointer_not_runme.m | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/Examples/test-suite/octave/smart_pointer_not_runme.m b/Examples/test-suite/octave/smart_pointer_not_runme.m new file mode 100644 index 0000000..8b3fea8 --- /dev/null +++ b/Examples/test-suite/octave/smart_pointer_not_runme.m @@ -0,0 +1,42 @@ +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 |
