2022-10-30 12:58:00 +00:00
|
|
|
// This test enforces that the (renamed) reexports are present in the search results.
|
2024-01-12 22:32:08 +00:00
|
|
|
// 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
|
2022-10-30 12:58:00 +00:00
|
|
|
|
2024-12-12 20:26:09 +00:00
|
|
|
//@ aux-crate:equivalent=equivalent.rs
|
|
|
|
//@ compile-flags: --extern equivalent
|
|
|
|
//@ aux-build:equivalent.rs
|
|
|
|
//@ build-aux-docs
|
|
|
|
#[doc(inline)]
|
|
|
|
pub extern crate equivalent;
|
|
|
|
#[doc(inline)]
|
|
|
|
pub use equivalent::Equivalent as NotEquivalent;
|
|
|
|
|
2022-10-30 12:58:00 +00:00
|
|
|
pub mod fmt {
|
|
|
|
pub struct Subscriber;
|
|
|
|
}
|
|
|
|
mod foo {
|
|
|
|
pub struct AnotherOne;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use fmt::Subscriber as FmtSubscriber;
|
2024-06-03 07:35:56 +00:00
|
|
|
pub use foo::AnotherOne;
|