2018-01-03 21:55:40 +00:00
|
|
|
error[E0382]: use of partially moved value: `maybe` (Ast)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-41962.rs:7:30
|
2017-09-06 06:36:34 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | if let Some(thing) = maybe {
|
2017-09-06 06:36:34 +00:00
|
|
|
| ----- ^^^^^ value used here after move
|
|
|
|
| |
|
2018-01-02 06:23:13 +00:00
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2017-09-06 06:36:34 +00:00
|
|
|
|
2018-01-03 21:55:40 +00:00
|
|
|
error[E0382]: use of moved value: `(maybe as std::prelude::v1::Some).0` (Ast)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-41962.rs:7:21
|
2017-09-06 06:36:34 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | if let Some(thing) = maybe {
|
2018-01-02 06:10:04 +00:00
|
|
|
| ^^^^^ value moved here in previous iteration of loop
|
2018-01-02 06:23:13 +00:00
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2017-09-06 06:36:34 +00:00
|
|
|
|
2018-07-31 12:36:50 +00:00
|
|
|
error[E0382]: use of moved value (Mir)
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-41962.rs:7:21
|
2018-05-09 15:17:58 +00:00
|
|
|
|
|
2018-07-22 20:13:18 +00:00
|
|
|
LL | if let Some(thing) = maybe {
|
2018-09-28 16:21:10 +00:00
|
|
|
| ^^^^^ value moved here, in previous iteration of loop
|
2018-05-09 15:17:58 +00:00
|
|
|
|
|
2018-06-21 02:51:18 +00:00
|
|
|
= note: move occurs because value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2018-05-09 15:17:58 +00:00
|
|
|
|
2018-09-06 13:48:33 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2017-09-06 06:36:34 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0382`.
|