heptagon/test/good/fbyfby2.ept
Cédric Pasteur 72cac326a8 Fixed normalization of fby
We should normalize not only outputs but also 
other fbys to generate correct code. The test shows
a program that was compiled incorrectly.
2011-10-19 16:31:40 +02:00

6 lines
82 B
Plaintext

node f() returns (o:bool)
var x:bool;
let
o = x;
x = true fby false fby x;
tel