about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-57410.rs
AgeCommit message (Collapse)AuthorLines
2021-09-15Move some tests to more reasonable directoriesCaio-17/+0
2019-11-04Use check-pass in ui tests where appropriateTomasz Miąsko-1/+1
2019-07-03Migrate compile-pass annotations to build-passYuki Okushi-1/+1
2019-02-02Update visibility of intermediate use items.David Wood-0/+17
Currently, the target of a use statement will be updated with the visibility of the use statement itself (if the use statement was visible). This commit ensures that if the path to the target item is via another use statement then that intermediate use statement will also have the visibility updated like the target. This silences incorrect `unreachable_pub` lints with inactionable suggestions.