diff options
Diffstat (limited to 'test/export-import.wast')
-rw-r--r-- | test/export-import.wast | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/export-import.wast b/test/export-import.wast new file mode 100644 index 000000000..5dc2185c6 --- /dev/null +++ b/test/export-import.wast @@ -0,0 +1,8 @@ +(module + (type $v (func)) + (import "env" "test1" (func $test1)) + (import "env" "test2" (global $test2 i32)) + (export "test1" (func $test1)) + (export "test2" (global $test2)) +) + |