]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/suggest-as-ref-on-mut-closure.stderr
Do not use a suggestion to change a binding's name to a type
[rust.git] / src / test / ui / borrowck / suggest-as-ref-on-mut-closure.stderr
1 error[E0507]: cannot move out of `*cb` which is behind a mutable reference
2   --> $DIR/suggest-as-ref-on-mut-closure.rs:7:5
3    |
4 LL |     cb.map(|cb| cb());
5    |     ^^^--------------
6    |     |  |
7    |     |  `*cb` moved due to this method call
8    |     move occurs because `*cb` has type `Option<&mut dyn FnMut()>`, which does not implement the `Copy` trait
9    |
10 note: this function takes ownership of the receiver `self`, which moves `*cb`
11   --> $SRC_DIR/core/src/option.rs:LL:COL
12    |
13 LL |     pub const fn map<U, F>(self, f: F) -> Option<U>
14    |                            ^^^^
15 help: consider calling `.as_ref()` to borrow the type's contents
16    |
17 LL |     cb.as_ref().map(|cb| cb());
18    |        +++++++++
19
20 error[E0596]: cannot borrow `*cb` as mutable, as it is behind a `&` reference
21   --> $DIR/suggest-as-ref-on-mut-closure.rs:12:26
22    |
23 LL |     cb.as_ref().map(|cb| cb());
24    |                      --  ^^ `cb` is a `&` reference, so the data it refers to cannot be borrowed as mutable
25    |                      |
26    |                      consider changing this binding's type to be: `&mut &mut dyn FnMut()`
27
28 error: aborting due to 2 previous errors
29
30 Some errors have detailed explanations: E0507, E0596.
31 For more information about an error, try `rustc --explain E0507`.