2016-06-25 21:08:10 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2023-11-20 12:50:25 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/34473
|
|
|
|
|
2016-06-25 21:08:10 -05:00
|
|
|
mod second {
|
|
|
|
pub struct SomeTypeWithLongName;
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/index.html
|
|
|
|
//@ !hasraw - SomeTypeWithLongName
|
|
|
|
//@ has foo/struct.SomeType.html
|
|
|
|
//@ !has foo/struct.SomeTypeWithLongName.html
|
2016-06-25 21:08:10 -05:00
|
|
|
pub use second::{SomeTypeWithLongName as SomeType};
|