summaryrefslogtreecommitdiffstats
path: root/tests/ui/explicit-tail-calls/return-mismatches.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /tests/ui/explicit-tail-calls/return-mismatches.stderr
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/explicit-tail-calls/return-mismatches.stderr')
-rw-r--r--tests/ui/explicit-tail-calls/return-mismatches.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/explicit-tail-calls/return-mismatches.stderr b/tests/ui/explicit-tail-calls/return-mismatches.stderr
new file mode 100644
index 000000000..1dcc35797
--- /dev/null
+++ b/tests/ui/explicit-tail-calls/return-mismatches.stderr
@@ -0,0 +1,27 @@
+error[E0308]: mismatched types
+ --> $DIR/return-mismatches.rs:5:5
+ |
+LL | become _g0();
+ | ^^^^^^^^^^^^ expected `&[u8]`, found `&[u8; 1]`
+ |
+ = note: expected reference `&'static [u8]`
+ found reference `&'static [u8; 1]`
+
+error[E0308]: mismatched types
+ --> $DIR/return-mismatches.rs:13:5
+ |
+LL | become _g1();
+ | ^^^^^^^^^^^^ expected `()`, found `!`
+ |
+ = note: expected unit type `()`
+ found type `!`
+
+error[E0308]: mismatched types
+ --> $DIR/return-mismatches.rs:21:5
+ |
+LL | become _g2();
+ | ^^^^^^^^^^^^ expected `u32`, found `u16`
+
+error: aborting due to 3 previous errors
+
+For more information about this error, try `rustc --explain E0308`.