]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/issue-31287-drop-in-guard.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / issue-31287-drop-in-guard.stderr
1 error[E0382]: use of moved value: `a`
2   --> $DIR/issue-31287-drop-in-guard.rs:7:9
3    |
4 LL |     let a = Some("...".to_owned());
5    |         - move occurs because `a` has type `Option<String>`, which does not implement the `Copy` trait
6 LL |     let b = match a {
7 LL |         Some(_) if { drop(a); false } => None,
8    |                           - value moved here
9 LL |         x => x,
10    |         ^ value used here after move
11    |
12 help: consider cloning the value if the performance cost is acceptable
13    |
14 LL |         Some(_) if { drop(a.clone()); false } => None,
15    |                            ++++++++
16
17 error[E0382]: use of moved value: `a`
18   --> $DIR/issue-31287-drop-in-guard.rs:13:9
19    |
20 LL |     let a = Some("...".to_owned());
21    |         - move occurs because `a` has type `Option<String>`, which does not implement the `Copy` trait
22 LL |     let b = match a {
23 LL |         Some(_) if let Some(()) = { drop(a); None } => None,
24    |                                          - value moved here
25 LL |         x => x,
26    |         ^ value used here after move
27    |
28 help: consider cloning the value if the performance cost is acceptable
29    |
30 LL |         Some(_) if let Some(()) = { drop(a.clone()); None } => None,
31    |                                           ++++++++
32
33 error: aborting due to 2 previous errors
34
35 For more information about this error, try `rustc --explain E0382`.