mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
266 B
Rust
12 lines
266 B
Rust
#![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};
|