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