diff --git a/tests/res/tests/exprs/block.saf b/tests/res/tests/exprs/block.saf index 0e24b43..84f66cb 100644 --- a/tests/res/tests/exprs/block.saf +++ b/tests/res/tests/exprs/block.saf @@ -1,7 +1,6 @@ print({ 1 }); -print({ let x = 2; let y = x + 1; y }); +print({ let x = 2; x }); # output: # 1 -# 3 - +# 2