2020-12-15 14:03:25 -06:00
|
|
|
error: expected one of `,`, `:`, or `>`, found `=`
|
|
|
|
--> $DIR/issue-34334.rs:2:29
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let sr: Vec<(u32, _, _) = vec![];
|
2020-12-15 14:03:25 -06:00
|
|
|
| -- - ^ expected one of `,`, `:`, or `>`
|
|
|
|
| | |
|
|
|
|
| | maybe try to close unmatched angle bracket
|
2018-07-15 16:11:54 -05:00
|
|
|
| while parsing the type for `sr`
|
2022-03-01 13:40:48 -06:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | let sr: Vec<(u32, _, _)> = vec![];
|
|
|
|
| +
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: a value of type `Vec<(u32, _, _)>` cannot be built from an iterator over elements of type `()`
|
2022-12-11 16:49:50 -06:00
|
|
|
--> $DIR/issue-34334.rs:5:87
|
2019-03-26 19:36:07 -05:00
|
|
|
|
|
|
|
|
LL | let sr2: Vec<(u32, _, _)> = sr.iter().map(|(faction, th_sender, th_receiver)| {}).collect();
|
2022-12-11 16:49:50 -06:00
|
|
|
| ^^^^^^^ value of type `Vec<(u32, _, _)>` cannot be built from `std::iter::Iterator<Item=()>`
|
2020-07-14 12:35:59 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `FromIterator<()>` is not implemented for `Vec<(u32, _, _)>`
|
2021-12-13 14:56:40 -06:00
|
|
|
= help: the trait `FromIterator<T>` is implemented for `Vec<T>`
|
2022-12-06 14:08:17 -06:00
|
|
|
note: the method call chain might not have had the expected associated types
|
2022-12-07 16:16:37 -06:00
|
|
|
--> $DIR/issue-34334.rs:5:43
|
2022-12-06 11:34:24 -06:00
|
|
|
|
|
2022-12-07 13:11:06 -06:00
|
|
|
LL | let sr: Vec<(u32, _, _) = vec![];
|
|
|
|
| ------ this expression has type `Vec<(_, _, _)>`
|
|
|
|
...
|
2022-12-06 11:34:24 -06:00
|
|
|
LL | let sr2: Vec<(u32, _, _)> = sr.iter().map(|(faction, th_sender, th_receiver)| {}).collect();
|
2022-12-11 13:38:43 -06:00
|
|
|
| ------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Iterator::Item` changed to `()` here
|
2022-12-07 13:11:06 -06:00
|
|
|
| |
|
2022-12-11 13:38:43 -06:00
|
|
|
| `Iterator::Item` is `&(_, _, _)` here
|
2021-10-05 18:04:09 -05:00
|
|
|
note: required by a bound in `collect`
|
|
|
|
--> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
|
2019-03-26 19:36:07 -05:00
|
|
|
|
2020-07-14 12:35:59 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2020-07-14 12:35:59 -05:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|