]> git.proxmox.com Git - rustc.git/blob - tests/rustdoc/inline-rename-34473.rs
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / rustdoc / inline-rename-34473.rs
1 #![crate_name = "foo"]
2
3 // https://github.com/rust-lang/rust/issues/34473
4
5 mod second {
6 pub struct SomeTypeWithLongName;
7 }
8
9 // @has foo/index.html
10 // @!hasraw - SomeTypeWithLongName
11 // @has foo/struct.SomeType.html
12 // @!has foo/struct.SomeTypeWithLongName.html
13 pub use second::{SomeTypeWithLongName as SomeType};