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}