rust/src/test/ui/issue-42796.nll.stderr
2018-07-15 17:10:52 -07:00

15 lines
492 B
Plaintext

error[E0382]: borrow 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 borrowed 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`.