2016-06-25 21:08:10 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
mod second {
|
|
|
|
pub struct SomeTypeWithLongName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/index.html
|
2022-08-11 23:44:07 -05:00
|
|
|
// @!hasraw - SomeTypeWithLongName
|
2016-06-25 21:08:10 -05:00
|
|
|
// @has foo/struct.SomeType.html
|
|
|
|
// @!has foo/struct.SomeTypeWithLongName.html
|
|
|
|
pub use second::{SomeTypeWithLongName as SomeType};
|