diff options
Diffstat (limited to 'test/memory-import64.wast.from-wast')
-rw-r--r-- | test/memory-import64.wast.from-wast | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/memory-import64.wast.from-wast b/test/memory-import64.wast.from-wast new file mode 100644 index 000000000..60a280c0e --- /dev/null +++ b/test/memory-import64.wast.from-wast @@ -0,0 +1,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) + ) + ) +) |