-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Don't add attribute to allow unused-qualifications to derive impl's #71969
Conversation
Currently `#![forbid(unused_qualifications)]` is incompatible with all derive's because we add `#[allow(unused_qualifications)]` in all generated impl's.
r? @cramertj (rust_highfive has picked a reviewer for you, use r? to override) |
☔ The latest upstream changes (presumably #72041) made this pull request unmergeable. Please resolve the merge conflicts. |
@rustbot modify labels to +S-waiting-on-author -S-waiting-on-review |
r? @varkor |
The |
Ping from triage: @samrat |
Another ping from triage @samrat |
@samrat closing this pr due to inactivity. If you have time again, you can open a new pr with these changes. Thanks for taking the time to contribute :) |
Currently
#![forbid(unused_qualifications)]
is incompatible with all derive's because we add#[allow(unused_qualifications)]
in all generated impl's.Closes #71898