rust/src/test/ui/borrowck/issue-41962.stderr

30 lines
1.1 KiB
Plaintext
Raw Normal View History

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
| |
| 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 {
| ^^^^^ value moved here in previous iteration of loop
|
= 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
error[E0382]: use of moved value (Mir)
2018-12-25 15:56:47 +00:00
--> $DIR/issue-41962.rs:7:21
|
LL | if let Some(thing) = maybe {
| ^^^^^ value moved here, in previous iteration of loop
|
= note: move occurs because value has type `std::vec::Vec<bool>`, which does not implement the `Copy` trait
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`.