wasm-micro-runtime/tests/unit/linear-memory-wasm/out_of_bounds.wast

11 lines
184 B
Plaintext
Raw Normal View History

2024-06-04 03:24:27 +00:00
(module
(type $1 (func (param i32) (result i32)))
(memory $3 0)
(export "load" (func $4))
(func $4 (type $1) (param $0 i32) (result i32)
local.get $0
i32.load
)
)