blob: 9c2481b2f90aad52e7ae51b334f61974ce8db6de [file] [log] [blame]
error[E0382]: use of moved value: `s`
--> $DIR/issue-42796.rs:28:20
|
LL | let mut s_copy = s;
| ---------- value moved here
...
LL | println!("{}", s); //~ ERROR use of moved value
| ^ value used here after move
|
= note: move occurs because `s` has type `std::string::String`, which does not implement the `Copy` trait
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.