summaryrefslogtreecommitdiffhomepage
path: root/tests/02_runtime/06_recursion
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2021-02-17 18:28:01 +0100
committerGitHub <noreply@github.com>2021-02-17 18:28:01 +0100
commit679270fd3afa93cca84ab31b5041922037fec0c5 (patch)
treee55752bae52bf7eed38b91c42e990a8b116b6621 /tests/02_runtime/06_recursion
parent77580a893283f2bde7ab46496bd3a3d7b2fc6784 (diff)
parent14e46b8e225dc329f4e14777960b10abb8a09699 (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_recursion6
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 --