about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/intra-doc/non-path-primitives.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-63/+0
2022-10-01bless rustdoc-uiMaybe Waffle-1/+1
2022-01-05Rustdoc: resolve associated traits for primitive typesMahdi Dibaiee-8/+2
Fixes #90703
2021-03-01Rename rustdoc lints to be a tool lint instead of built-in.Joshua Nelson-2/+2
- Rename `broken_intra_doc_links` to `rustdoc::broken_intra_doc_links` - Ensure that the old lint names still work and give deprecation errors - Register lints even when running doctests Otherwise, all `rustdoc::` lints would be ignored. - Register all existing lints as removed This unfortunately doesn't work with `register_renamed` because tool lints have not yet been registered when rustc is running. For similar reasons, `check_backwards_compat` doesn't work either. Call `register_removed` directly instead. - Fix fallout + Rustdoc lints for compiler/ + Rustdoc lints for library/ Note that this does *not* suggest `rustdoc::broken_intra_doc_links` for `rustdoc::intra_doc_link_resolution_failure`, since there was no time when the latter was valid.
2021-01-17Feature-gate `pointer` and `reference` in intra-doc linksJoshua Nelson-9/+9
- Only feature gate associated items - Add docs to unstable book
2020-12-24Don't process `[]` and `()` in intra-doc linksJoshua Nelson-0/+69
These caused several false positives when documenting rustc, which means there will likely be many more false positives in the rest of the ecosystem.