aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/voidtest.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/voidtest.i')
-rw-r--r--Examples/test-suite/voidtest.i3
1 files changed, 3 insertions, 0 deletions
diff --git a/Examples/test-suite/voidtest.i b/Examples/test-suite/voidtest.i
index f0e649373..d792f4151 100644
--- a/Examples/test-suite/voidtest.i
+++ b/Examples/test-suite/voidtest.i
@@ -9,6 +9,7 @@ class Foo {
public:
Foo(void) { }
void memberfunc(void) { }
+ void* get_this() { return this; }
static void staticmemberfunc(void) { }
};
@@ -18,4 +19,6 @@ void *vfunc2(Foo *f) { return f; }
Foo *vfunc3(void *f) { return (Foo *) f; }
Foo *vfunc4(Foo *f) { return f; }
+bool test_pointers_equal(void *a, void *b) { return a == b; }
+
%}