mirror of
https://github.com/mii443/wasmer.git
synced 2025-08-25 17:59:27 +00:00
6 lines
197 B
Plaintext
Vendored
6 lines
197 B
Plaintext
Vendored
(module
|
|
(func $callback (import "" "callback") (result i32))
|
|
(func (export "callback") (result i32) (call $callback))
|
|
(func (export "unreachable") (result i32) (unreachable) (i32.const 1))
|
|
)
|