blob: d46f4ed416f912cd32b39f69a5e3715718989dd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
(module
(type $0 (func (result i32)))
(type $1 (func (result funcref)))
(elem declare func $0)
(func $0 (type $0) (result i32)
(i32.const 0)
)
(func $test (type $1) (result funcref)
(ref.func $0)
)
)
(module
(type $0 (func))
(global $bar i32 (i32.const 0))
(memory $foo 16 16)
(export "memory" (memory $foo))
(export "global" (global $bar))
(func $bar (type $0)
)
)
(module
(type $func (func (result i32)))
(global $global$0 (ref $func) (ref.func $foo))
(export "export" (func $export))
(func $foo (type $func) (result i32)
(unreachable)
)
(func $export (type $func) (result i32)
(call_ref $func
(global.get $global$0)
)
)
)
|