blob: d617d3f424f27b27b70767ec1bfa9f8b9cef560d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
(module
(memory 1 1)
(import "env" "test1" (func $test1 (param anyref) (result anyref)))
(import "env" "test2" (global $test2 anyref))
(export "test1" (func $test1 (param anyref) (result anyref)))
(export "test2" (global $test2))
(func $anyref_test (param $0 anyref) (result anyref)
(local $1 anyref)
(local.set $1
(call $test1
(local.get $0)
)
)
(return
(local.get $1)
)
)
)
|