2016-06-26 03:08:10 +01:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
mod second {
|
|
|
|
pub struct SomeTypeWithLongName;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @has foo/index.html
|
2022-08-12 00:44:07 -04:00
|
|
|
// @!hasraw - SomeTypeWithLongName
|
2016-06-26 03:08:10 +01:00
|
|
|
// @has foo/struct.SomeType.html
|
|
|
|
// @!has foo/struct.SomeTypeWithLongName.html
|
|
|
|
pub use second::{SomeTypeWithLongName as SomeType};
|