[codeb] Instr update + forgotten testcase
[testub10.git] / codeb / intelli_06.0
1 struct x y z end;
2
3 method b(a)
4        a.x := 3;
5        a.y := 2;
6        a.z := (a.x * a.y) - 10;
7        return a;
8 end;