scripts: add onetest_gesamt for arm64
[testub10.git] / gesamt / skinner33_02.0
1 struct a b c d end;
2
3 method inc()
4        this.a := this.a - -1;
5        this.b := this.b - -1;
6        this.c := this.c - -1;
7        this.d := this.d - -1;
8        return this.a;
9 end;
10
11 method m(ar)
12         5;
13         20 - ar.inc() - 70;
14         inc();
15         ar.inc();
16         20 * inc();
17         20 * (5 - 4 - (4 * ((5 or 6) < ar.inc())));
18         inc() * 20;
19         (((ar.inc() < (5 or 6)) *4) - 4 - 5) * 20;
20
21         15 * (ar.inc() < (5 -inc()));
22         ar.inc() < inc();
23
24         inc(4-5);       
25         (((ar.inc(4-5,6*4,5<5) < (5 or 6)) *4) - 4 - 5) * 20;
26         return 0;
27 end;
28
29