2018-01-18 09:54:35 -06:00
|
|
|
error[E0382]: use of moved value: `s`
|
|
|
|
--> $DIR/issue-29723.rs:22:13
|
|
|
|
|
|
|
|
|
18 | 0 if { drop(s); false } => String::from("oops"),
|
|
|
|
| - value moved here
|
|
|
|
...
|
|
|
|
22 | s
|
|
|
|
| ^ 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
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0382"
|