diff --git a/examples/grow_memory.wat b/examples/grow_memory.wat index 61d90bb4f..327d0a287 100644 --- a/examples/grow_memory.wat +++ b/examples/grow_memory.wat @@ -2,7 +2,7 @@ (memory 1) (func $main (export "main") (result i32) (drop (memory.grow (i32.const 1))) - (i32.store (i32.const 400) (i32.const 1600)) - (i32.load (i32.const 1600)) + (i32.store (i32.const 0) (i32.const 1600)) + (i32.load (i32.const 0)) ) )