Files
wasm-instrument/tests/fixtures/stack-height/start.wat
T
2018-12-24 19:20:33 +01:00

12 lines
212 B
WebAssembly Text Format

(module
(import "env" "ext_return" (func $ext_return (param i32 i32)))
(import "env" "memory" (memory 1 1))
(start $start)
(func $start (export "exported_start")
(local i32)
)
(func (export "call")
)
)