]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34473.rs
Rollup merge of #103766 - lukas-code:error-in-core, r=Dylan-DPC
[rust.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};