diff options
Diffstat (limited to 'test/lit/parse-bad-tuple-extract-index.wast')
-rw-r--r-- | test/lit/parse-bad-tuple-extract-index.wast | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/lit/parse-bad-tuple-extract-index.wast b/test/lit/parse-bad-tuple-extract-index.wast new file mode 100644 index 000000000..01974fe7e --- /dev/null +++ b/test/lit/parse-bad-tuple-extract-index.wast @@ -0,0 +1,16 @@ +;; Test that out-of-bounds tuple.extract indices produce parse errors. + +;; RUN: not wasm-opt %s 2>&1 | filecheck %s + +;; CHECK: [parse exception: Bad index on tuple.extract (at 9:17)] + +(module + (func + (tuple.extract 2 + (tuple.make + (i32.const 0) + (i64.const 1) + ) + ) + ) +) |