summaryrefslogtreecommitdiff
path: root/test/export-import.wast.from-wast
blob: 174101e7cbf6b678fd0d61c93721376ab322acb1 (plain)
1
2
3
4
5
6
7
8
(module
 (type $v (func))
 (type $FUNCSIG$v (func))
 (import "env" "test1" (func $test1))
 (import "env" "test2" (global $test2 i32))
 (export "test1" (func $test1))
 (export "test2" (global $test2))
)