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