-
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
Fix #[derive] for empty structs with braces #31822
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
Struct(vdata, _) => vdata, | ||
EnumMatching(_, v, _) => &v.node.data, | ||
_ => unreachable!() | ||
}.is_struct(); |
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.
Could this be extracted at the same time that ident
is extracted above?
Looks good to me, thanks @petrochenkov! Just one small nit but otherwise r=me |
Updated. |
Should we back out this complexity now that |
Yeah, I think |
Please [breaking-batch] future changes to the derive machinery. |
@Manishearth what kind of changes? Changes to the public API (?) of libsyntax_ext? Or any changes at all to the expansion of |
The API. We're trying to avoid libsyntax breakages that go on and break large swaths of the ecosystem. The derive machinery and the AST are both things that do this. |
Fixes #29548