summaryrefslogtreecommitdiff
path: root/test/memory-import.wast.from-wast
blob: 70fc97057b9978727bdcc4793d4513aaa607f550 (plain)
1
2
3
4
5
6
7
8
9
(module
 (type $0 (func (result i32)))
 (import "env" "memory" (memory $0 1 1))
 (func $foo (type $0) (result i32)
  (i32.load offset=13
   (i32.const 37)
  )
 )
)