diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-02-17 18:28:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 18:28:01 +0100 |
commit | 679270fd3afa93cca84ab31b5041922037fec0c5 (patch) | |
tree | e55752bae52bf7eed38b91c42e990a8b116b6621 /tests/02_runtime/06_recursion | |
parent | 77580a893283f2bde7ab46496bd3a3d7b2fc6784 (diff) | |
parent | 14e46b8e225dc329f4e14777960b10abb8a09699 (diff) |
Merge pull request #2 from jow-/rewrite
treewide: rewrite ucode interpreter
Diffstat (limited to 'tests/02_runtime/06_recursion')
-rw-r--r-- | tests/02_runtime/06_recursion | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/02_runtime/06_recursion b/tests/02_runtime/06_recursion index b222640..470fc3a 100644 --- a/tests/02_runtime/06_recursion +++ b/tests/02_runtime/06_recursion @@ -39,11 +39,11 @@ Testing recursive invocations. -- Expect stderr -- Runtime error: Too much recursion -In test(), line 3, byte 7: - called from anonymous function ([stdin]:6:6) +In test(), line 3, byte 8: + called from anonymous function ([stdin]:6:7) ` test();` - Near here --^ + Near here ---^ -- End -- |