about summary refs log tree commit diff
path: root/src/test/rustdoc/intra-doc/field.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-4/+0
2021-06-07use channel-relative urls in rustdoc/intra-doc/field.rsPietro Albini-2/+2
2021-05-03Make match in `register_res` easier to readJoshua Nelson-0/+4
- Don't duplicate DefKind -> ItemType handling; that's a good way to get bugs - Use exhaustive match - Add comments This found that register_res is very wrong in at least one way: if it registers a Res for `Variant`, it should also register one for `Field`. But I don't know whether the one for Variant should be removed or Field added. Maybe someone has ideas?