git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
27 lines
284 B
Objective-C
27 lines
284 B
Objective-C
smart_pointer_overload
|
|
|
|
f = Foo();
|
|
b = Bar(f);
|
|
|
|
|
|
if (f.test(3) != 1)
|
|
error
|
|
endif
|
|
if (f.test(3.5) != 2)
|
|
error
|
|
endif
|
|
if (f.test("hello") != 3)
|
|
error
|
|
endif
|
|
|
|
if (b.test(3) != 1)
|
|
error
|
|
endif
|
|
if (b.test(3.5) != 2)
|
|
error
|
|
endif
|
|
if (b.test("hello") != 3)
|
|
error
|
|
endif
|
|
|
|
|