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

24 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-12-25 09:56:47 -06:00
error[E0271]: type mismatch resolving `<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:6:39: 9:6 found_e:_]> as std::iter::Iterator>::Item == &_`
--> $DIR/issue-31173.rs:10:10
2018-07-15 16:11:54 -05:00
|
LL | .cloned()
| ^^^^^^ expected u8, found reference
|
= note: expected type `u8`
found type `&_`
2018-12-25 09:56:47 -06:00
error[E0599]: no method named `collect` found for type `std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:6:39: 9:6 found_e:_]>>` in the current scope
--> $DIR/issue-31173.rs:14:10
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | .collect();
2018-07-15 16:11:54 -05:00
| ^^^^^^^
|
= note: the method `collect` exists but the following trait bounds were not satisfied:
2018-12-25 09:56:47 -06:00
`&mut std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:6:39: 9:6 found_e:_]>> : std::iter::Iterator`
`std::iter::Cloned<std::iter::TakeWhile<&mut std::vec::IntoIter<u8>, [closure@$DIR/issue-31173.rs:6:39: 9:6 found_e:_]>> : std::iter::Iterator`
2018-07-15 16:11:54 -05:00
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0271, E0599.
2018-07-15 16:11:54 -05:00
For more information about an error, try `rustc --explain E0271`.