1
Fork 0
rust/tests/rustdoc-js/reexport.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
408 B
Rust
Raw Normal View History

// This test enforces that the (renamed) reexports are present in the search results.
// This is a DWIM case, since renaming the export probably means the intent is also different.
// For the de-duplication case of exactly the same name, see reexport-dedup
pub mod fmt {
pub struct Subscriber;
}
mod foo {
pub struct AnotherOne;
}
pub use fmt::Subscriber as FmtSubscriber;
2024-06-03 17:35:56 +10:00
pub use foo::AnotherOne;