mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
4e99db9e54
Remove unnecessary span label for parse errors that already have a suggestion. Provide structured suggestion to close generics in more cases.
14 lines
531 B
Plaintext
14 lines
531 B
Plaintext
error: expected one of `+`, `,`, `::`, `=`, or `>`, found `From`
|
|
--> $DIR/unclosed-generics-in-impl-def.rs:1:46
|
|
|
|
|
LL | impl<S: Into<std::borrow::Cow<'static, str>> From<S> for Canonical {}
|
|
| ^^^^ expected one of `+`, `,`, `::`, `=`, or `>`
|
|
|
|
|
help: you might have meant to end the type parameters here
|
|
|
|
|
LL | impl<S: Into<std::borrow::Cow<'static, str>>> From<S> for Canonical {}
|
|
| +
|
|
|
|
error: aborting due to 1 previous error
|
|
|