2018-01-03 15:55:40 -06:00
|
|
|
error[E0382]: use of partially moved value: `maybe` (Ast)
|
|
|
|
--> $DIR/issue-41962.rs:17:30
|
2017-09-06 01:36:34 -05:00
|
|
|
|
|
2018-01-03 15:55:40 -06:00
|
|
|
17 | if let Some(thing) = maybe {
|
2017-09-06 01:36:34 -05:00
|
|
|
| ----- ^^^^^ value used here after move
|
|
|
|
| |
|
2018-01-02 00:23:13 -06: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 01:36:34 -05:00
|
|
|
|
2018-01-03 15:55:40 -06:00
|
|
|
error[E0382]: use of moved value: `(maybe as std::prelude::v1::Some).0` (Ast)
|
|
|
|
--> $DIR/issue-41962.rs:17:21
|
2017-09-06 01:36:34 -05:00
|
|
|
|
|
2018-01-03 15:55:40 -06:00
|
|
|
17 | if let Some(thing) = maybe {
|
2018-01-02 00:10:04 -06:00
|
|
|
| ^^^^^ value moved here in previous iteration of loop
|
2018-01-02 00:23:13 -06:00
|
|
|
|
|
|
|
|
= note: move occurs because the value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
2017-09-06 01:36:34 -05:00
|
|
|
|
2018-02-09 08:49:38 -06:00
|
|
|
error[E0382]: use of moved value: `maybe` (Mir)
|
|
|
|
--> $DIR/issue-41962.rs:17:9
|
|
|
|
|
|
|
|
|
17 | if let Some(thing) = maybe {
|
|
|
|
| ^ ----- value moved here
|
|
|
|
| _________|
|
|
|
|
| |
|
|
|
|
18 | | //~^ ERROR use of partially moved value: `maybe` (Ast) [E0382]
|
|
|
|
19 | | //~| ERROR use of moved value: `(maybe as std::prelude::v1::Some).0` (Ast) [E0382]
|
|
|
|
20 | | //~| ERROR use of moved value: `maybe` (Mir) [E0382]
|
|
|
|
21 | | //~| ERROR use of moved value: `maybe` (Mir) [E0382]
|
|
|
|
22 | | //~| ERROR use of moved value: `maybe.0` (Mir) [E0382]
|
|
|
|
23 | | }
|
|
|
|
| |_________^ value used here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `maybe` has type `std::option::Option<std::vec::Vec<bool>>`, which does not implement the `Copy` trait
|
|
|
|
|
2018-01-03 15:55:40 -06:00
|
|
|
error[E0382]: use of moved value: `maybe` (Mir)
|
|
|
|
--> $DIR/issue-41962.rs:17:16
|
|
|
|
|
|
|
|
|
17 | if let Some(thing) = maybe {
|
|
|
|
| ^^^^^-----^
|
|
|
|
| | |
|
|
|
|
| | value moved here
|
|
|
|
| value used here after move
|
|
|
|
|
|
|
|
|
= note: move occurs because `maybe` has type `std::option::Option<std::vec::Vec<bool>>`, which does not implement the `Copy` trait
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `maybe.0` (Mir)
|
|
|
|
--> $DIR/issue-41962.rs:17:21
|
|
|
|
|
|
|
|
|
17 | if let Some(thing) = maybe {
|
2018-01-03 16:13:32 -06:00
|
|
|
| ^^^^^ value moved here in previous iteration of loop
|
2018-01-03 15:55:40 -06:00
|
|
|
|
|
|
|
|
= note: move occurs because `maybe.0` has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
|
|
|
|
|
2018-02-09 08:49:38 -06:00
|
|
|
error: aborting due to 5 previous errors
|
2017-09-06 01:36:34 -05:00
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0382"
|