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