summaryrefslogtreecommitdiff
path: root/test/parse/expr/bad-try-sig-multi.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse/expr/bad-try-sig-multi.txt')
-rw-r--r--test/parse/expr/bad-try-sig-multi.txt31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/parse/expr/bad-try-sig-multi.txt b/test/parse/expr/bad-try-sig-multi.txt
deleted file mode 100644
index c626b615..00000000
--- a/test/parse/expr/bad-try-sig-multi.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-;;; TOOL: wat2wasm
-;;; ARGS: --enable-exceptions
-;;; ERROR: 1
-(module
- (func
- try (result i32 i32)
- i32.const 1
- i32.const 2
- catch
- drop ;; drop exnref
- i32.const 3
- i32.const 4
- end
- return)
-
- (func
- i32.const 0
- try (param i32)
- drop
- catch
- drop ;; drop exnref
- end
- return))
-(;; STDERR ;;;
-out/test/parse/expr/bad-try-sig-multi.txt:6:5: error: multiple result values not currently supported.
- try (result i32 i32)
- ^^^
-out/test/parse/expr/bad-try-sig-multi.txt:18:5: error: try params not currently supported.
- try (param i32)
- ^^^
-;;; STDERR ;;)