about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/deref-generic.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-15/+0
2021-01-30Balance sidebar `Deref` cycle check with main contentJ. Ryan Stinnett-0/+15
The `Deref` cycle checks added as part of #80653 were "unbalanced" in the sense that the main content code path checks for cycles _before_ descending, while the sidebar checks _after_. Checking _before_ is correct, so this changes the sidebar path to match the main content path.