-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add E0088, E0091, E0109 and E0110 and error explanation #26593
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
r? @Manishearth |
} | ||
``` | ||
|
||
Please check you give the right number of lifetime parameter. Example: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parameters
type X = u32<i32>; // error: type parameters are not allowed on this type | ||
``` | ||
|
||
Please check you actually used the good type or check again its definition. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Please check that you used the correct type and recheck its definition. Perhaps it doesn't need the type parameter."
Updated. |
@@ -360,6 +360,40 @@ integer type: | |||
http://doc.rust-lang.org/reference.html#ffi-attributes | |||
"##, | |||
|
|||
E0109: r##" | |||
You tried to give type parameter to a type which doesn't need it. Erroneous |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"a type parameter"
Updated ! Do you see anything else @Manishearth ? |
@@ -360,6 +360,40 @@ integer type: | |||
http://doc.rust-lang.org/reference.html#ffi-attributes | |||
"##, | |||
|
|||
E0109: r##" | |||
You tried to give type parameter to a type which doesn't need it. Erroneous |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "a" has been eaten by the void ! :O
Re-updated. |
@bors r+ rollup |
1 similar comment
@bors r+ rollup |
📌 Commit 7f830a8 has been approved by |
Part of #24407.
cc @michaelsproul