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.txt13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/parse/expr/bad-loop-sig-multi.txt b/test/parse/expr/bad-loop-sig-multi.txt
index 26bd575e..7763f3d0 100644
--- a/test/parse/expr/bad-loop-sig-multi.txt
+++ b/test/parse/expr/bad-loop-sig-multi.txt
@@ -7,9 +7,18 @@
i32.const 2
end
drop
- 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 loop signature result types not currently supported.
+out/test/parse/expr/bad-loop-sig-multi.txt:5:5: error: multiple loop results 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 ;;)