about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-79593.rs
AgeCommit message (Collapse)AuthorLines
2021-09-15Move some tests to more reasonable directoriesCaio-29/+0
2021-02-20Make "missing field" error message more naturalr00ster91-1/+1
2020-12-12Resolve enum field visibility correctlyCamelid-0/+29
Previously, this code treated enum fields' visibility as if they were struct fields. However, that's not correct because the visibility of a struct field with `ast::VisibilityKind::Inherited` is private to the module it's defined in, whereas the visibility of an *enum* field with `ast::VisibilityKind::Inherited` is the visibility of the enum it belongs to.