summaryrefslogtreecommitdiff
path: root/test/export-import.wast.from-wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/export-import.wast.from-wast')
-rw-r--r--test/export-import.wast.from-wast9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/export-import.wast.from-wast b/test/export-import.wast.from-wast
new file mode 100644
index 000000000..3675ae243
--- /dev/null
+++ b/test/export-import.wast.from-wast
@@ -0,0 +1,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))
+)