]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js/reexport.rs
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / rustdoc-js / reexport.rs
1 // This test enforces that the (renamed) reexports are present in the search results.
2
3 pub mod fmt {
4     pub struct Subscriber;
5 }
6 mod foo {
7     pub struct AnotherOne;
8 }
9
10 pub use foo::AnotherOne;
11 pub use fmt::Subscriber as FmtSubscriber;