about summary refs log tree commit diff
path: root/tests/rustdoc-js/reexport-dedup-method.rs
blob: c00df094d7acb846eea5156866121f1eac6bf348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This test enforces that the (renamed) reexports are present in the search results.
#![crate_name = "foo"]

pub mod fmt {
    pub struct Subscriber;
    impl Subscriber {
        pub fn dostuff(&self) {}
    }
}
mod foo {
    pub struct AnotherOne;
    impl AnotherOne {
        pub fn dostuff(&self) {}
    }
}

pub use fmt::Subscriber;
pub use foo::AnotherOne;