about summary refs log tree commit diff
path: root/src/test/ui/rust-2018/edition-lint-nested-empty-paths.fixed
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-34/+0
2022-05-21Remove `crate` visibility modifier in libs, testsJacob Pratt-6/+6
2022-03-25resolve: Do not build expensive suggestions if they are not actually usedVadim Petrochenkov-10/+0
Also remove a redundant parameter from `fn resolve_path(_with_ribs)`, `crate_lint: CrateLint` is a more detailed version of `record_used: bool` with `CrateLint::No` meaning `false` and anything else meaning `true`.
2022-01-23Remove deduplication of early lintsAaron Hill-0/+14
We already have a general mechanism for deduplicating reported lints, so there's no need to have an additional one for early lints specifically. This allows us to remove some `PartialEq` impls.
2021-06-25Address PR feedbackRyan Levick-3/+3
2021-06-25Change how edition based future compatibility warnings are handledRyan Levick-3/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-09-09Remove crate_visibility_modifier from 2018 editionMark Rousskov-1/+1
2018-05-25Fix naming conventions for new lintsVadim Petrochenkov-1/+1
2018-05-23handle fully qualified paths properly when lintingNiko Matsakis-0/+40
fixes #50970