Files
ANSLibs/swig-4.3.0/Examples/test-suite/octave/naturalvar_runme.m

20 lines
236 B
Objective-C

# do not dump Octave core
if exist("crash_dumps_octave_core", "builtin")
crash_dumps_octave_core(0);
endif
naturalvar
f = Foo();
b = Bar();
b.f = f;
cvar.s = "hello";
b.s = "hello";
if (b.s != cvar.s)
error("failed");
endif