summaryrefslogtreecommitdiff
path: root/test/lit/parse-bad-tuple-extract-index.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/parse-bad-tuple-extract-index.wast')
-rw-r--r--test/lit/parse-bad-tuple-extract-index.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/parse-bad-tuple-extract-index.wast b/test/lit/parse-bad-tuple-extract-index.wast
index 186bdc560..7124bce23 100644
--- a/test/lit/parse-bad-tuple-extract-index.wast
+++ b/test/lit/parse-bad-tuple-extract-index.wast
@@ -2,12 +2,12 @@
;; RUN: not wasm-opt %s 2>&1 | filecheck %s
-;; CHECK: [parse exception: Bad index on tuple.extract: ( tuple.extract 2 ( tuple.make ( i32.const 0 ) ( i64.const 1 ) ) ) (at 9:17)]
+;; CHECK: [parse exception: Bad index on tuple.extract: ( tuple.extract 2 ( tuple.make 2 ( i32.const 0 ) ( i64.const 1 ) ) ) (at 9:17)]
(module
(func
(tuple.extract 2
- (tuple.make
+ (tuple.make 2
(i32.const 0)
(i64.const 1)
)