Files
wasmtime/filetests/trap_unreachable.wat

10 lines
95 B
Plaintext

(module
(func $foo
(unreachable)
)
(func $main
(call $foo)
)
(start $main)
)