diff options
Diffstat (limited to 'test/spec')
-rw-r--r-- | test/spec/array.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec/array.wast b/test/spec/array.wast index 6e7b8cddb..d9b75e287 100644 --- a/test/spec/array.wast +++ b/test/spec/array.wast @@ -83,7 +83,7 @@ ) (func $len (param $v (ref $vec)) (result i32) - (array.len $vec (local.get $v)) + (array.len (local.get $v)) ) (func (export "len") (result i32) (call $len (array.new_default $vec (i32.const 3))) |