10 lines
123 B
Rust
10 lines
123 B
Rust
|
pub type Foo = something::same::Thing;
|
||
|
|
||
|
mod something {
|
||
|
pub mod same {
|
||
|
pub struct Thing;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|