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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
518 B
Plaintext
Raw Normal View History

error[E0382]: use of moved value: `s`
2019-09-06 14:23:00 +00:00
--> $DIR/issue-29723.rs:10:13
|
LL | let s = String::new();
| - move occurs because `s` has type `String`, which does not implement the `Copy` trait
LL | let _s = match 0 {
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
error: aborting due to previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0382`.