From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../coercion-missing-tail-expected-type.stderr | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/ui/coercion/coercion-missing-tail-expected-type.stderr (limited to 'tests/ui/coercion/coercion-missing-tail-expected-type.stderr') diff --git a/tests/ui/coercion/coercion-missing-tail-expected-type.stderr b/tests/ui/coercion/coercion-missing-tail-expected-type.stderr new file mode 100644 index 000000000..4c04bb113 --- /dev/null +++ b/tests/ui/coercion/coercion-missing-tail-expected-type.stderr @@ -0,0 +1,26 @@ +error[E0308]: mismatched types + --> $DIR/coercion-missing-tail-expected-type.rs:4:24 + | +LL | fn plus_one(x: i32) -> i32 { + | -------- ^^^ expected `i32`, found `()` + | | + | implicitly returns `()` as its body has no tail or `return` expression +LL | x + 1; + | - help: remove this semicolon to return this value + +error[E0308]: mismatched types + --> $DIR/coercion-missing-tail-expected-type.rs:8:13 + | +LL | fn foo() -> Result { + | --- ^^^^^^^^^^^^^^^ expected enum `Result`, found `()` + | | + | implicitly returns `()` as its body has no tail or `return` expression +LL | Ok(1); + | - help: remove this semicolon to return this value + | + = note: expected enum `Result` + found unit type `()` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0308`. -- cgit v1.2.3