aboutsummaryrefslogtreecommitdiff
path: root/tests/lang/eval-okay-tail-call-1.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/eval-okay-tail-call-1.nix')
-rw-r--r--tests/lang/eval-okay-tail-call-1.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/lang/eval-okay-tail-call-1.nix b/tests/lang/eval-okay-tail-call-1.nix
deleted file mode 100644
index a3962ce3f..000000000
--- a/tests/lang/eval-okay-tail-call-1.nix
+++ /dev/null
@@ -1,3 +0,0 @@
-let
- f = n: if n == 100000 then n else f (n + 1);
-in f 0