rust/tests/run-make/issue-125484-used-dependencies/main.rs

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() {}