]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-34473.rs
Rollup merge of #107731 - RalfJung:interpret-discriminant, r=cjgillot
[rust.git] / tests / 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};