[codeb] Instr update + forgotten testcase
[testub10.git] / codeb / skinner33_02.0
1
2 struct a b end;
3
4 method foo()
5         var x := 5;
6         if this * x then
7                 return (x - this) * x;
8         end;
9         return x;
10 end;
11
12 method bar(n)
13         var x := n;
14         this.a := x;
15         return x;
16 end;
17
18 method bla(m n)
19         if not((m-n) < (m*n)) then
20                 return m;
21         else
22                 return n;
23         end; 
24 end;