Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/octave/primitive_ref_runme.m
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

54 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