summaryrefslogtreecommitdiff
path: root/tests/source/test5.scade
diff options
context:
space:
mode:
Diffstat (limited to 'tests/source/test5.scade')
-rw-r--r--tests/source/test5.scade4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/source/test5.scade b/tests/source/test5.scade
index 1de390d..566acf0 100644
--- a/tests/source/test5.scade
+++ b/tests/source/test5.scade
@@ -1,8 +1,8 @@
-node test(i: int) returns(probe a, b, c: int; exit: bool)
+node test(i: int) returns(probe a, probe b, probe c: int; exit: bool)
let
b = 0 -> pre a;
a = if b > 4 then 0 else b + 1;
- c = 0;
+ c = i;
exit = i >= 10;
tel