BUG Probleme grave de scheduling, cf [ff].
This commit is contained in:
parent
fe1f02402b
commit
2d9bf2c553
1 changed files with 20 additions and 0 deletions
20
test/good/sampling_stateful_output2.ept
Normal file
20
test/good/sampling_stateful_output2.ept
Normal file
|
@ -0,0 +1,20 @@
|
|||
node f(x:int) returns (y:int)
|
||||
var z :int;
|
||||
let
|
||||
z = 3;
|
||||
y = 0 fby z;
|
||||
tel
|
||||
|
||||
node ff(x:int; c:bool) returns (y:int)
|
||||
var z :int;
|
||||
let
|
||||
z = 3;
|
||||
y = (0 fby z) when c;
|
||||
tel
|
||||
|
||||
node fff(x:int; c:bool) returns ()
|
||||
var z :int; y:int;
|
||||
let
|
||||
z = 3;
|
||||
y = (0 fby z) when c;
|
||||
tel
|
Loading…
Reference in a new issue