blob: 37da3dd1999753fdc14fd5cbb94dfb2eee06f30e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![crate_name = "foo"]
mod second {
pub struct SomeTypeWithLongName;
}
// @has foo/index.html
// @!hasraw - SomeTypeWithLongName
// @has foo/struct.SomeType.html
// @!has foo/struct.SomeTypeWithLongName.html
pub use second::{SomeTypeWithLongName as SomeType};
|