scripts: add onetest_gesamt for arm64
[testub10.git] / gesamt / codeb_skinner33_01.0
1 struct a end;
2
3
4 method foo(x)
5         if (x-1) then
6                 return 5*(this*3);
7         else
8                 return 4*(2*this);
9         end;
10 end;
11
12 method bar(n)
13         var x := 5;
14         var y := 6;
15         if n then
16                 return x - a;
17         end;
18         if n < 7 then
19                 return y * a;
20         end;
21         return x;
22 end;
23
24 method bla()
25         if a then
26                 return 5;
27         else
28                 return a;
29         end;
30 end;