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