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 --- tests/ui/issues/issue-24036.stderr | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/ui/issues/issue-24036.stderr (limited to 'tests/ui/issues/issue-24036.stderr') diff --git a/tests/ui/issues/issue-24036.stderr b/tests/ui/issues/issue-24036.stderr new file mode 100644 index 000000000..0e73a51fa --- /dev/null +++ b/tests/ui/issues/issue-24036.stderr @@ -0,0 +1,28 @@ +error[E0308]: mismatched types + --> $DIR/issue-24036.rs:3:9 + | +LL | let mut x = |c| c + 1; + | --- the expected closure +LL | x = |c| c + 1; + | ^^^^^^^^^ expected closure, found a different closure + | + = note: expected closure `[closure@$DIR/issue-24036.rs:2:17: 2:20]` + found closure `[closure@$DIR/issue-24036.rs:3:9: 3:12]` + = note: no two closures, even if identical, have the same type + = help: consider boxing your closure and/or using it as a trait object + +error[E0282]: type annotations needed + --> $DIR/issue-24036.rs:9:15 + | +LL | 1 => |c| c + 1, + | ^ + | +help: consider giving this closure parameter an explicit type + | +LL | 1 => |c: /* Type */| c + 1, + | ++++++++++++ + +error: aborting due to 2 previous errors + +Some errors have detailed explanations: E0282, E0308. +For more information about an error, try `rustc --explain E0282`. -- cgit v1.2.3