test(tvix/eval): add tests for very simple closures

Change-Id: Ib8287ade4d5df6d29e1812fb2d349cee5d92ca6a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6296
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
Vincent Ambo 2022-08-27 02:23:04 +03:00 committed by tazjin
parent 010a96e525
commit 26acc2e636
4 changed files with 4 additions and 0 deletions

View file

@ -0,0 +1 @@
16

View file

@ -0,0 +1 @@
(a: b: c: d: a + b + c + d) 1 3 5 7

View file

@ -0,0 +1 @@
7

View file

@ -0,0 +1 @@
(a: b: a + b) 2 5