Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
123 B
Rust
Raw Normal View History

pub type Foo = something::same::Thing;
mod something {
pub mod same {
pub struct Thing;
}
}
fn main() {}