rust/tests/rustdoc-html/inline_local/pub-re-export-28537.rs
2026-01-07 14:23:30 +01:00

20 lines
308 B
Rust

// https://github.com/rust-lang/rust/issues/28537
#![crate_name="foo"]
#[doc(hidden)]
pub mod foo {
pub struct Foo;
}
mod bar {
pub use self::bar::Bar;
mod bar {
pub struct Bar;
}
}
//@ has foo/struct.Foo.html
pub use foo::Foo;
//@ has foo/struct.Bar.html
pub use self::bar::Bar;