diff options
Diffstat (limited to 'test/memory-import.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/memory-import.wast.fromBinary.noDebugInfo | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/memory-import.wast.fromBinary.noDebugInfo b/test/memory-import.wast.fromBinary.noDebugInfo new file mode 100644 index 000000000..2ddf90ce9 --- /dev/null +++ b/test/memory-import.wast.fromBinary.noDebugInfo @@ -0,0 +1,10 @@ +(module + (type $0 (func (result i32))) + (import "env" "memory" (memory $0 1 1)) + (func $0 (type $0) (result i32) + (i32.load offset=13 + (i32.const 37) + ) + ) +) + |