mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-21 20:23:21 +00:00
14 lines
128 B
Rust
14 lines
128 B
Rust
|
|
mod mod2a;
|
|
mod mod2b;
|
|
|
|
mod mymod1 {
|
|
use mod2a::{Foo,Bar};
|
|
mod mod3a;
|
|
}
|
|
|
|
#[path="mod2c.rs"]
|
|
mod mymod2;
|
|
|
|
mod submod2;
|