Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/octave/primitive_ref_runme.m
2019-08-04 21:38:19 -05: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