summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/recursion.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compiler/recursion.typ')
-rw-r--r--tests/typ/compiler/recursion.typ2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/typ/compiler/recursion.typ b/tests/typ/compiler/recursion.typ
index ae214631..1bd53178 100644
--- a/tests/typ/compiler/recursion.typ
+++ b/tests/typ/compiler/recursion.typ
@@ -15,7 +15,7 @@
---
// Test with unnamed function.
-// Error: 17-18 unknown variable
+// Error: 17-18 unknown variable: f
#let f = (n) => f(n - 1)
#f(10)