swig/Examples/test-suite/octave/primitive_ref_runme.m
Xavier Delacour 393391965c Initial commit of Octave module.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2008-03-01 23:35:44 +00:00

53 lines
553 B
Objective-C

primitive_ref
if (ref_int(3) != 3)
error
endif
if (ref_uint(3) != 3)
error
endif
if (ref_short(3) != 3)
error
endif
if (ref_ushort(3) != 3)
error
endif
if (ref_long(3) != 3)
error
endif
if (ref_ulong(3) != 3)
error
endif
if (ref_schar(3) != 3)
error
endif
if (ref_uchar(3) != 3)
error
endif
if (ref_float(3.5) != 3.5)
error
endif
if (ref_double(3.5) != 3.5)
error
endif
if (ref_bool(true) != true)
error
endif
if (!strcmp(ref_char('x'),'x'))
error
endif
if (ref_over(0) != 0)
error
endif