summaryrefslogtreecommitdiff
path: root/test/metadce/ref-func.wast
blob: b7d2b8ac7d801d0b8cb4ed47777a373a038997c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
 (import "env" "f1" (func $f1))
 (import "env" "f2" (func $f2))

 (export "g" (global $g))
 (export "f" (func $f))

 (global $g funcref (ref.func $f1))

 (func $f (result funcref) (ref.func $f2))
)