2020-12-15 20:03:25 +00:00
|
|
|
error: expected one of `,`, `:`, or `>`, found `=`
|
|
|
|
--> $DIR/missing-closing-angle-bracket-eq-constraint.rs:7:23
|
|
|
|
|
|
|
|
|
LL | let v : 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 `v`
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | let v : Vec<(u32,_)> = vec![];
|
|
|
|
| +
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
|
|
error: expected one of `!`, `(`, `+`, `,`, `::`, `<`, or `>`, found `{`
|
|
|
|
--> $DIR/missing-closing-angle-bracket-eq-constraint.rs:13:32
|
|
|
|
|
|
|
|
|
LL | let foo : Foo::<T1, T2 = Foo {_a : arg1, _b : arg2};
|
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 7 possible tokens
|
|
|
|
| |
|
|
|
|
| while parsing the type for `foo`
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | let foo : Foo::<T1>, T2 = Foo {_a : arg1, _b : arg2};
|
|
|
|
| +
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
|
|
error: expected one of `,`, `:`, or `>`, found `=`
|
|
|
|
--> $DIR/missing-closing-angle-bracket-eq-constraint.rs:18:18
|
|
|
|
|
|
|
|
|
LL | let v : Vec<'a = 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 `v`
|
2022-03-01 19:40:48 +00:00
|
|
|
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
|
|
|
|
LL | let v : Vec<'a> = vec![];
|
|
|
|
| +
|
2020-12-15 20:03:25 +00:00
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
error[E0282]: type annotations needed for `Vec<_>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/missing-closing-angle-bracket-eq-constraint.rs:7:7
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
|
|
|
LL | let v : Vec<(u32,_) = vec![];
|
2024-01-31 16:27:58 +00:00
|
|
|
| ^ ------ type must be known at this point
|
2022-02-14 12:25:26 +00:00
|
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
help: consider giving `v` an explicit type, where the placeholders `_` are specified
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
LL | let v: Vec<_> : Vec<(u32,_) = vec![];
|
2022-02-14 12:25:26 +00:00
|
|
|
| ++++++++
|
2020-12-15 20:03:25 +00:00
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
error[E0282]: type annotations needed for `Vec<_>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/missing-closing-angle-bracket-eq-constraint.rs:18:7
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
|
|
|
LL | let v : Vec<'a = vec![];
|
2024-01-31 16:27:58 +00:00
|
|
|
| ^ ------ type must be known at this point
|
2022-02-14 12:25:26 +00:00
|
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
help: consider giving `v` an explicit type, where the placeholders `_` are specified
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
2023-02-08 16:49:43 +00:00
|
|
|
LL | let v: Vec<_> : Vec<'a = vec![];
|
2022-02-14 12:25:26 +00:00
|
|
|
| ++++++++
|
2020-12-15 20:03:25 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|