heptagon/test/bad/t11-initialization.ept
Léonard Gérard 8f4411e145 Recursives Qualnames.
In order to have a correct handling of inner classes in Java, and to prepare for modules inside modules.
2011-02-07 14:24:17 +01:00

12 lines
232 B
Plaintext

node mmm(x: int) returns (o2: int)
var last m: int; o: int;
let
automaton
state I
do m = 1; o = last m + 2 until (o = 1) then J
state J
do m = last m + 1; o = 0
end;
o2 = 1 -> pre o
tel