summaryrefslogtreecommitdiff
path: root/test/reduce/imports.wast.txt
blob: 6807ffd26690472e61a6143bc1dd46701f7a4fac (plain)
1
2
3
4
5
6
7
8
9
10
11
(module
 (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)
 )
)