Function invocations working, stack unwinding correctly

This commit is contained in:
2024-11-29 01:17:12 -07:00
parent 2200df4977
commit 0bda3fb60d
3 changed files with 15 additions and 9 deletions

View File

@@ -2,8 +2,12 @@ fn test(a, b, c) {
};
fn test2(x, y, z) {
fn test2() {
test(1, 2, 3);
};
test2(1, 2, 3);
fn test3() {
test2();
};
test3();