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.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/parse/expr/bad-loop-sig-multi.txt b/test/parse/expr/bad-loop-sig-multi.txt
new file mode 100644
index 00000000..5ea5b726
--- /dev/null
+++ b/test/parse/expr/bad-loop-sig-multi.txt
@@ -0,0 +1,14 @@
+;;; ERROR: 1
+(module
+ (func
+ loop i32 i32
+ i32.const 1
+ i32.const 2
+ end
+ drop
+ drop))
+(;; STDERR ;;;
+out/test/parse/expr/bad-loop-sig-multi.txt:4:5: multiple loop signature result types not currently supported.
+ loop i32 i32
+ ^^^^
+;;; STDERR ;;)