summaryrefslogtreecommitdiff
path: root/trunk/Examples/test-suite/octave/smart_pointer_member_runme.m
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2010-06-02 20:53:17 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2010-06-02 20:53:17 +0000
commit2824b0cbb66e715490e1ef13250bd675d87b32d9 (patch)
treec3bc8d54c6d73f2b7ce08cac34172dbc9f5e5b95 /trunk/Examples/test-suite/octave/smart_pointer_member_runme.m
parent289cfef4b4766ff266f3b1bdda8ca3a952e5a047 (diff)
downloadswig-39489534f6104d5a2938392418dbb7189c037f8b.tar.gz
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/tags/rel-2.0.0@12089 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'trunk/Examples/test-suite/octave/smart_pointer_member_runme.m')
-rw-r--r--trunk/Examples/test-suite/octave/smart_pointer_member_runme.m39
1 files changed, 39 insertions, 0 deletions
diff --git a/trunk/Examples/test-suite/octave/smart_pointer_member_runme.m b/trunk/Examples/test-suite/octave/smart_pointer_member_runme.m
new file mode 100644
index 000000000..30251c3a8
--- /dev/null
+++ b/trunk/Examples/test-suite/octave/smart_pointer_member_runme.m
@@ -0,0 +1,39 @@
+smart_pointer_member
+
+f = Foo();
+f.y = 1;
+
+if (f.y != 1)
+ error
+endif
+
+b = Bar(f);
+b.y = 2;
+
+if (f.y != 2)
+ error("f.y = %i, b.y = %i",f.y,b.y)
+endif
+
+if (swig_this(b.x) != swig_this(f.x))
+ error
+endif
+
+if (b.z != f.z)
+ error
+endif
+
+try
+ if (Foo.z == Bar.z)
+ error
+ endif
+ error
+catch
+end_try_catch
+
+
+
+
+
+
+
+