summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-34473.rs
blob: d96301f3ae736f35eaf5e95001d834fd3cf8b829 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_name = "foo"]

mod second {
    pub struct SomeTypeWithLongName;
}

// @has foo/index.html
// @!has - SomeTypeWithLongName
// @has foo/struct.SomeType.html
// @!has foo/struct.SomeTypeWithLongName.html
pub use second::{SomeTypeWithLongName as SomeType};