blob: 5e134165348166dec09f7f7521bab84af0166b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(module
(import "env" "imported" (func $imported (result i64)))
(export "func" (func $func))
(export "imported" (func $imported))
(export "imported_again" (func $imported))
(func $func (result i64)
(drop (call $imported))
(unreachable)
)
)
(module)
|