blob: 866872a5d9ec0c172604d647cba7a28aa8ca05c5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
(module
(type $none_=>_none (func))
(type $i32_=>_none (func (param i32)))
(event $b_wasm_event (attr 0) (param i32))
(export "wasm_func_b" (func $b_wasm_func))
(export "wasm_event_b" (event $b_wasm_event))
(func $b_wasm_func
(unreachable)
)
)
|