]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-js/reexport.rs
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[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;