Files
wasm-instrument/tests/fixtures/stack-height/imports.wat
T
StackOverflowExcept1on fdce5c64f1 chore: modernize WASM tests (#79)
I tried locally merge `fix-tests` and `fix-clippy` branches and CI
should work after my PRs
2023-11-07 09:14:09 +01:00

16 lines
229 B
WebAssembly Text Format

;; This test
(module
(import "env" "foo" (func $foo))
(import "env" "boo" (func $boo))
(func (export "i32.add") (param i32 i32) (result i32)
call $foo
call $boo
local.get 0
local.get 1
i32.add
)
)