2018-01-18 15:54:35 +00:00
|
|
|
error[E0382]: use of moved value: `s`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-29723.rs:12:13
|
2018-01-18 15:54:35 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | 0 if { drop(s); false } => String::from("oops"),
|
2018-01-18 15:54:35 +00:00
|
|
|
| - value moved here
|
|
|
|
...
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | s
|
2018-01-18 15:54:35 +00:00
|
|
|
| ^ 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-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|