mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
12 lines
137 B
Rust
12 lines
137 B
Rust
//@ check-pass
|
|
|
|
mod a {
|
|
mod b {
|
|
use self as A;
|
|
use super as B;
|
|
use super::{self as C};
|
|
}
|
|
}
|
|
|
|
fn main() {}
|