]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-34473.rs
Rollup merge of #69569 - matthiaskrgr:nonminimal_bool, r=mark-Simulacrum
[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 // @!has - SomeTypeWithLongName
9 // @has foo/struct.SomeType.html
10 // @!has foo/struct.SomeTypeWithLongName.html
11 pub use second::{SomeTypeWithLongName as SomeType};