]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/issue-84044-drop-non-mut.stderr
Rollup merge of #107272 - compiler-errors:new-solver-more-predicates, r=lcnr
[rust.git] / tests / ui / closures / issue-84044-drop-non-mut.stderr
1 error[E0596]: cannot borrow `f` as mutable, as it is not declared as mutable
2   --> $DIR/issue-84044-drop-non-mut.rs:5:10
3    |
4 LL |     drop(&mut f);
5    |          ^^^^^^ cannot borrow as mutable
6    |
7 help: consider changing this to be mutable
8    |
9 LL |     let mut f = || {};
10    |         +++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0596`.