-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Re-add double underscores in derive #32294
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
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
Woo, highfive is back! |
@@ -929,10 +929,10 @@ impl<'a> MethodDef<'a> { | |||
/// | |||
/// // equivalent to: | |||
/// impl PartialEq for A { | |||
/// fn eq(&self, arg_1: &A) -> bool { | |||
/// fn eq(&self, __arg_1: &A) -> bool { | |||
/// match *self { | |||
/// A {x: ref self_0_0, y: ref self_0_1} => { |
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.
missed these comments, if you care
|
||
#![deny(warnings)] | ||
|
||
#[derive(Hash)] |
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.
Can you add all other deriving modes here as well?
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.
done.
@bors: r+ e63a6af5d7faaa0dd1cbfec6d43fe68ca7259329 |
I think this line needs to regain some underscores. |
@bors r=alexcrichton Ah, fixed. |
📌 Commit 52e064c has been approved by |
@durka, sanity-check, please?
Don't merge this yet, I need to add a test and test it locally.ready for review
(fixes #32292)