summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/auxiliary/issue-29584.rs
blob: a9b8796c0fe31671d22ea9e8426b393723eba477 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-flags: -Cmetadata=aux

pub struct Foo;

#[doc(hidden)]
mod bar {
    trait Bar {}

    impl Bar for ::Foo {}
}