Uh oh!
There was an error while loading. Please reload this page.
Don't add attribute to allow unused-qualifications to derive impl's - #71969
Don't add attribute to allow unused-qualifications to derive impl's#71969samrat wants to merge 1 commit into
Conversation
Currently `#![forbid(unused_qualifications)]` is incompatible with all derive's because we add `#[allow(unused_qualifications)]` in all generated impl's.
rust-highfive
commented
May 7, 2020
r? @cramertj (rust_highfive has picked a reviewer for you, use r? to override) |
cramertj
commented
May 8, 2020
bors
commented
May 9, 2020
☔ The latest upstream changes (presumably #72041) made this pull request unmergeable. Please resolve the merge conflicts. |
Muirrum
commented
Jun 13, 2020
@rustbot modify labels to +S-waiting-on-author -S-waiting-on-review |
jonas-schievink
commented
Jun 13, 2020
r? @varkor |
varkor
commented
Jun 18, 2020
The |
Elinvynia
commented
Jul 2, 2020
Ping from triage: @samrat |
Muirrum
commented
Jul 24, 2020
Another ping from triage @samrat |
Dylan-DPC-zz
commented
Jul 24, 2020
@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