summaryrefslogtreecommitdiff
path: root/test/reduce
diff options
context:
space:
mode:
Diffstat (limited to 'test/reduce')
-rw-r--r--test/reduce/imports.wast.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/reduce/imports.wast.txt b/test/reduce/imports.wast.txt
index 220bf3b7e..6807ffd26 100644
--- a/test/reduce/imports.wast.txt
+++ b/test/reduce/imports.wast.txt
@@ -2,5 +2,10 @@
(type $0 (func))
(type $1 (func (result i32)))
(import "env" "func" (func $fimport$0))
+ (export "x" (func $0))
+ (func $0 (; 1 ;) (type $1) (result i32)
+ (call $fimport$0)
+ (i32.const 5678)
+ )
)