summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/typedef_class_runme.m
blob: 55878a2998ce8ae29464448d65bca51b1fc50205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# do not dump Octave core
if exist("crash_dumps_octave_core", "builtin")
  crash_dumps_octave_core(0);
endif

typedef_class

a = typedef_class.RealA();
a.a = 3;
 
b = typedef_class.B();
b.testA(a);