heptagon/test/good/t16.ept

10 lines
210 B
Plaintext
Raw Normal View History

2010-06-21 12:11:06 +02:00
(* Normalization produces a new equation "v_1 = v_1" without any checking! *)
node foo() returns (tmt1:int)
var v_1:int; tmt2:int;
2011-05-23 14:04:11 +02:00
let
2010-06-21 12:11:06 +02:00
tmt1 = (1 + tmt2);
tmt2 = 0 fby v_1;
v_1 = tmt1;
tel