2020-12-15 20:03:25 +00:00
|
|
|
error: expected one of `,` or `>`, found `;`
|
|
|
|
--> $DIR/nested-missing-closing-angle-bracket.rs:2:46
|
|
|
|
|
|
|
|
|
LL | let v : Vec::<Vec<(u32,_,_)> = vec![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
|
|
|
| - while parsing the type for `v` ^ expected one of `,` or `>`
|
2020-12-15 20:03:25 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-12-15 20:03:25 +00:00
|
|
|
|