rust/src/test/ui/issues/issue-29723.stderr

15 lines
472 B
Plaintext
Raw Normal View History

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