summaryrefslogtreecommitdiff
path: root/test/parse/expr
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse/expr')
-rw-r--r--test/parse/expr/bad-block-sig-multi.txt2
-rw-r--r--test/parse/expr/bad-if-sig-multi.txt2
-rw-r--r--test/parse/expr/bad-loop-sig-multi.txt2
-rw-r--r--test/parse/expr/bad-try-sig-multi.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/parse/expr/bad-block-sig-multi.txt b/test/parse/expr/bad-block-sig-multi.txt
index 00e7698f..7abe50a3 100644
--- a/test/parse/expr/bad-block-sig-multi.txt
+++ b/test/parse/expr/bad-block-sig-multi.txt
@@ -15,7 +15,7 @@
drop
end))
(;; STDERR ;;;
-out/test/parse/expr/bad-block-sig-multi.txt:5:5: error: multiple block results not currently supported.
+out/test/parse/expr/bad-block-sig-multi.txt:5:5: error: multiple result values not currently supported.
block (result i32 i32)
^^^^^
out/test/parse/expr/bad-block-sig-multi.txt:14:5: error: block params not currently supported.
diff --git a/test/parse/expr/bad-if-sig-multi.txt b/test/parse/expr/bad-if-sig-multi.txt
index e987c504..44cb713d 100644
--- a/test/parse/expr/bad-if-sig-multi.txt
+++ b/test/parse/expr/bad-if-sig-multi.txt
@@ -22,7 +22,7 @@
drop
end))
(;; STDERR ;;;
-out/test/parse/expr/bad-if-sig-multi.txt:6:5: error: multiple if results not currently supported.
+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.
diff --git a/test/parse/expr/bad-loop-sig-multi.txt b/test/parse/expr/bad-loop-sig-multi.txt
index 7763f3d0..1b85f018 100644
--- a/test/parse/expr/bad-loop-sig-multi.txt
+++ b/test/parse/expr/bad-loop-sig-multi.txt
@@ -15,7 +15,7 @@
drop
end))
(;; STDERR ;;;
-out/test/parse/expr/bad-loop-sig-multi.txt:5:5: error: multiple loop results not currently supported.
+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.
diff --git a/test/parse/expr/bad-try-sig-multi.txt b/test/parse/expr/bad-try-sig-multi.txt
index b57af6b2..c626b615 100644
--- a/test/parse/expr/bad-try-sig-multi.txt
+++ b/test/parse/expr/bad-try-sig-multi.txt
@@ -22,7 +22,7 @@
end
return))
(;; STDERR ;;;
-out/test/parse/expr/bad-try-sig-multi.txt:6:5: error: multiple try results not currently supported.
+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.