mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
226 B
Rust
17 lines
226 B
Rust
// run-pass
|
|
|
|
mod a {
|
|
pub mod b {
|
|
pub mod a {
|
|
pub fn foo() -> isize { return 1; }
|
|
}
|
|
}
|
|
}
|
|
|
|
mod c {
|
|
use a::b::a;
|
|
pub fn bar() { assert_eq!(a::foo(), 1); }
|
|
}
|
|
|
|
pub fn main() { c::bar(); }
|