git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10298 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
153 B
Mathematica
15 lines
153 B
Mathematica
refcount
|
|
#
|
|
# very innocent example
|
|
#
|
|
|
|
a = A3();
|
|
b1 = B(a);
|
|
b2 = B.create(a);
|
|
|
|
|
|
if (a.ref_count() != 3)
|
|
error("This program will crash... now")
|
|
endif
|
|
|
|
|