]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js/reexport.rs
Rollup merge of #107194 - xfix:remove-slice-internals-dependency-in-rustc-ast, r...
[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;