about summary refs log tree commit diff
path: root/src/test/ui/lint/issue-80988.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-14/+0
2021-06-06Don't pass -Z unstable-options by default for UI testsJoshua Nelson-2/+0
- Pass it explicitly where appropriate - Update stderr files and warnings; it turns that unstable-options has far-reaching effects on diagnostics.
2021-02-02introduce future-compatibility warning for forbidden lint groupsNiko Matsakis-0/+16
We used to ignore `forbid(group)` scenarios completely. This changed in #78864, but that led to a number of regressions (#80988, #81218). This PR introduces a future compatibility warning for the case where a group is forbidden but then an individual lint within that group is allowed. We now issue a FCW when we see the "allow", but permit it to take effect.