summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/inline_cross/auxiliary/rustdoc-hidden-sig.rs
blob: 6357b76df0c7a17de7bc6530c8d3a5e5a2ab738a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub struct Bar;

impl Bar {
    pub fn bar(_: u8) -> hidden::Hidden {
        hidden::Hidden
    }
}

#[doc(hidden)]
pub mod hidden {
    pub struct Hidden;
}