Reorganize rustdoc tests into their correct subdirectories for better categorization: - Move lint-related tests to rustdoc-ui/lints/ - Move intra-doc link tests to rustdoc-ui/intra-doc/ - Move deref-related tests to rustdoc-ui/deref/ - Move doc-cfg test to rustdoc/doc-cfg/ This improves test organization and makes it easier to find tests related to specific rustdoc functionality.
6 lines
158 B
Rust
6 lines
158 B
Rust
/// Woah, this trait links to [OtherTrait](OtherTrait)!
|
|
pub trait SomeTrait {}
|
|
|
|
/// Woah, this trait links to [SomeTrait](SomeTrait)!
|
|
pub trait OtherTrait {}
|