]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-js/reexport.rs
Rollup merge of #103729 - RalfJung:align-of-val-packed, r=oli-obk
[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;