]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-js/reexport.rs
unstable-book: Add page for the `abi_efiapi` feature
[rust.git] / src / test / 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;