]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-29723.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-29723.stderr
1 error[E0382]: use of moved value: `s`
2 --> $DIR/issue-29723.rs:10:13
3 |
4 LL | let s = String::new();
5 | - move occurs because `s` has type `String`, which does not implement the `Copy` trait
6 LL | let _s = match 0 {
7 LL | 0 if { drop(s); false } => String::from("oops"),
8 | - value moved here
9 ...
10 LL | s
11 | ^ value used here after move
12 |
13 help: consider cloning the value if the performance cost is acceptable
14 |
15 LL | 0 if { drop(s.clone()); false } => String::from("oops"),
16 | ++++++++
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0382`.