mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 17:31:52 +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;
|