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