2025-01-29 11:20:22 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/28537
|
|
|
|
#![crate_name="foo"]
|
|
|
|
|
2016-03-10 03:29:46 +01:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub mod foo {
|
|
|
|
pub struct Foo;
|
|
|
|
}
|
|
|
|
|
|
|
|
mod bar {
|
|
|
|
pub use self::bar::Bar;
|
|
|
|
mod bar {
|
|
|
|
pub struct Bar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-01-29 11:20:22 -07:00
|
|
|
//@ has foo/struct.Foo.html
|
2016-03-10 03:29:46 +01:00
|
|
|
pub use foo::Foo;
|
|
|
|
|
2025-01-29 11:20:22 -07:00
|
|
|
//@ has foo/struct.Bar.html
|
2016-03-10 03:29:46 +01:00
|
|
|
pub use self::bar::Bar;
|