diff options
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix')
-rw-r--r-- | tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix index bda364f42992..7be666000961 100644 --- a/tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix +++ b/tvix/eval/src/tests/tvix_tests/eval-okay-closure-self.nix @@ -1,4 +1,5 @@ let # self-recursive function should be able to close over itself f = n: if n <= 0 then "done" else f (n - 1); -in f 10 +in +f 10 |