test: integration tests for imports

This commit is contained in:
2025-03-13 09:43:29 +00:00
parent e881b736f8
commit f11fb9f881
23 changed files with 270 additions and 13 deletions

View File

@@ -0,0 +1,8 @@
import "../../../valid/sum.wacc" sum, main
begin
int result1 = call sum(5, 10) ;
int result2 = call main() ;
println result1 ;
println result2
end