2020-12-15 20:03:25 +00:00
|
|
|
error: expected one of `,`, `:`, or `>`, found `=`
|
|
|
|
--> $DIR/issue-34334.rs:2:29
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let sr: Vec<(u32, _, _) = vec![];
|
Detect more cases of `=` to `:` typo
When a `Local` is fully parsed, but not followed by a `;`, keep the `:` span
arround and mention it. If the type could continue being parsed as an
expression, suggest replacing the `:` with a `=`.
```
error: expected one of `!`, `+`, `->`, `::`, `;`, or `=`, found `.`
--> file.rs:2:32
|
2 | let _: std::env::temp_dir().join("foo");
| - ^ expected one of `!`, `+`, `->`, `::`, `;`, or `=`
| |
| while parsing the type for `_`
| help: use `=` if you meant to assign
```
Fix #119665.
2024-02-27 00:48:32 +00:00
|
|
|
| - ^ expected one of `,`, `:`, or `>`
|
|
|
|
| |
|
|
|
|
| while parsing the type for `sr`
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | let sr: Vec<(u32, _, _)> = vec![];
|
|
|
|
| +
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: a value of type `Vec<(u32, _, _)>` cannot be built from an iterator over elements of type `()`
|
2022-12-11 22:49:50 +00:00
|
|
|
--> $DIR/issue-34334.rs:5:87
|
2019-03-27 00:36:07 +00:00
|
|
|
|
|
|
|
|
LL | let sr2: Vec<(u32, _, _)> = sr.iter().map(|(faction, th_sender, th_receiver)| {}).collect();
|
2022-12-11 22:49:50 +00:00
|
|
|
| ^^^^^^^ value of type `Vec<(u32, _, _)>` cannot be built from `std::iter::Iterator<Item=()>`
|
2020-07-14 17:35:59 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `FromIterator<()>` is not implemented for `Vec<(u32, _, _)>`
|
2023-09-10 03:21:52 +00:00
|
|
|
= help: the trait `FromIterator<(u32, _, _)>` is implemented for `Vec<(u32, _, _)>`
|
2023-09-10 03:33:07 +00:00
|
|
|
= help: for that trait implementation, expected `(u32, _, _)`, found `()`
|
2022-12-06 20:08:17 +00:00
|
|
|
note: the method call chain might not have had the expected associated types
|
2022-12-07 22:16:37 +00:00
|
|
|
--> $DIR/issue-34334.rs:5:43
|
2022-12-06 17:34:24 +00:00
|
|
|
|
|
2022-12-07 19:11:06 +00:00
|
|
|
LL | let sr: Vec<(u32, _, _) = vec![];
|
|
|
|
| ------ this expression has type `Vec<(_, _, _)>`
|
|
|
|
...
|
2022-12-06 17:34:24 +00:00
|
|
|
LL | let sr2: Vec<(u32, _, _)> = sr.iter().map(|(faction, th_sender, th_receiver)| {}).collect();
|
2022-12-11 19:38:43 +00:00
|
|
|
| ------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `Iterator::Item` changed to `()` here
|
2022-12-07 19:11:06 +00:00
|
|
|
| |
|
2022-12-11 19:38:43 +00:00
|
|
|
| `Iterator::Item` is `&(_, _, _)` here
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `collect`
|
|
|
|
--> $SRC_DIR/core/src/iter/traits/iterator.rs:LL:COL
|
2019-03-27 00:36:07 +00:00
|
|
|
|
2020-07-14 17:35:59 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2020-07-14 17:35:59 +00:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|