]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/issue-34473.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / rustdoc / issue-34473.rs
1 #![crate_name = "foo"]
2
3 mod second {
4 pub struct SomeTypeWithLongName;
5 }
6
7 // @has foo/index.html
8 // @!hasraw - SomeTypeWithLongName
9 // @has foo/struct.SomeType.html
10 // @!has foo/struct.SomeTypeWithLongName.html
11 pub use second::{SomeTypeWithLongName as SomeType};