heptagon/test/bad/t3.ept

14 lines
184 B
Plaintext
Raw Normal View History

2010-06-21 12:11:06 +02:00
(* Unknown state name *)
node f(x:int) returns (y:int)
let
automaton
state A
do y = 2
2011-05-23 14:04:11 +02:00
until y = 2 then B
2010-06-21 12:11:06 +02:00
state B
2011-05-23 14:04:11 +02:00
do y = 3
until y = 3 then C
2010-06-21 12:11:06 +02:00
end
tel