summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/lints/inline-doc-link.rs
blob: 596f89be3d6d8d160a6755d6728a31620b9bd848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Regression test for <https://github.com/rust-lang/rust/pull/113167>

// check-pass
#![deny(rustdoc::redundant_explicit_links)]

mod m {
    pub enum ValueEnum {}
}
mod m2 {
    /// [`ValueEnum`]
    pub use crate::m::ValueEnum;
}
pub use m2::ValueEnum;