summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/rename_scope_runme.m
blob: 776d218c56cd3452639974f1f19eb6b807da7f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
rename_scope

a = Natural_UP();
b = Natural_BP();

if (a.rtest() != 1)
    error("failed");
endif

if (b.rtest() != 1)
    error("failed");
endif

f = @equals;