From 55b86f394a923ba1e3deac55c86bc41309b1da9a Mon Sep 17 00:00:00 2001 From: Leandre Lacourt <lacourtl@santel.imag.fr> Date: Fri, 13 Sep 2024 10:16:47 +0200 Subject: [PATCH] fix: correct a test file test file appli_para is now correct and can be launched --- test/should_work/appli_para.lus | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/should_work/appli_para.lus b/test/should_work/appli_para.lus index 39ccec5..d802a54 100644 --- a/test/should_work/appli_para.lus +++ b/test/should_work/appli_para.lus @@ -23,17 +23,17 @@ IMPORTANT: Ici on compile en --no-prefix pour avoir du code + lisible node D(x: int) returns (o: int); let - o = 0 -> (x - pre x) / 2; + o = x / 2; tel node A(x: int) returns (o: int); let - o = x + (0 -> pre o); + o = x * x; tel node C(x, y: int) returns (o: int); let - o = 0 -> pre (x + y); + o = x + y; tel -- GitLab