diff options
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix')
-rw-r--r-- | tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix new file mode 100644 index 000000000000..dae170b06bad --- /dev/null +++ b/tvix/eval/src/tests/tvix_tests/eval-okay-late-binding-closure.nix @@ -0,0 +1,4 @@ +let + f = n: n + a; + a = 2; +in f 40 |