Commit 3325b455cdd0003f796e01dda920623d787e0db9

Thomas de Grivel 2024-11-20T20:50:25

fix test ikc3 equal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/test/ikc3/equal.out.expected b/test/ikc3/equal.out.expected
index 94d56a2..ec9556f 100644
--- a/test/ikc3/equal.out.expected
+++ b/test/ikc3/equal.out.expected
@@ -10,3 +10,9 @@ c = 2
 {1, 2}
 ? = 1
 1
+to_lisp(quote (a = 1) && (b = 2))
+[operator_and, [operator_paren, [operator_equal, a, 1]], [operator_paren, [operator_equal, b, 2]]]
+if (a = 1) && (b = 2) do
+  {a, b}
+end
+{1, 2}