From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/issues/issue-34349.stderr | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 src/test/ui/issues/issue-34349.stderr (limited to 'src/test/ui/issues/issue-34349.stderr') diff --git a/src/test/ui/issues/issue-34349.stderr b/src/test/ui/issues/issue-34349.stderr deleted file mode 100644 index 8e9a16619..000000000 --- a/src/test/ui/issues/issue-34349.stderr +++ /dev/null @@ -1,22 +0,0 @@ -error[E0525]: expected a closure that implements the `Fn` trait, but this closure only implements `FnMut` - --> $DIR/issue-34349.rs:16:17 - | -LL | let diary = || { - | ^^ this closure implements `FnMut`, not `Fn` -LL | farewell.push_str("!!!"); - | -------- closure is `FnMut` because it mutates the variable `farewell` here -... -LL | apply(diary); - | ----- ----- the requirement to implement `Fn` derives from here - | | - | required by a bound introduced by this call - | -note: required by a bound in `apply` - --> $DIR/issue-34349.rs:11:32 - | -LL | fn apply(f: F) where F: Fn() { - | ^^^^ required by this bound in `apply` - -error: aborting due to previous error - -For more information about this error, try `rustc --explain E0525`. -- cgit v1.2.3