diff options
| author | Leedehai <18319900+Leedehai@users.noreply.github.com> | 2023-04-19 07:26:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-19 13:26:55 +0200 |
| commit | dc3017955a67e5509f6bc33cb9b4833806da4c22 (patch) | |
| tree | 364304f23268107cb0443fc0037a86bd4136d9ef /tests/typ/compiler/recursion.typ | |
| parent | e4b09d417e9bfc2c0011299272f33c6861e96a6f (diff) | |
Give more specific error messages (#881)
Diffstat (limited to 'tests/typ/compiler/recursion.typ')
| -rw-r--r-- | tests/typ/compiler/recursion.typ | 2 |
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) |
