Fixed skipped instructions after use

This commit is contained in:
2026-03-16 16:15:57 +11:00
parent b6e2a594e9
commit 1acc20db82
2 changed files with 9 additions and 0 deletions

7
tests/lib.grnd Normal file
View File

@@ -0,0 +1,7 @@
fun !lib_PrintHello -int
println "Hello, world!"
return 0
endfun
println "Hello!"
println "Hello!"

2
tests/use.grnd Normal file
View File

@@ -0,0 +1,2 @@
use "lib"
call !lib_PrintHello &tmp