mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
237 B
Rust
12 lines
237 B
Rust
// This test enforces that the (renamed) reexports are present in the search results.
|
|
|
|
pub mod fmt {
|
|
pub struct Subscriber;
|
|
}
|
|
mod foo {
|
|
pub struct AnotherOne;
|
|
}
|
|
|
|
pub use foo::AnotherOne;
|
|
pub use fmt::Subscriber as FmtSubscriber;
|