mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
17 lines
198 B
Rust
17 lines
198 B
Rust
//@ known-bug: rust-lang/rust#124490
|
|
use io::{self as std};
|
|
use std::collections::{self as io};
|
|
|
|
mod a {
|
|
pub mod b {
|
|
pub mod c {}
|
|
}
|
|
}
|
|
|
|
use a::*;
|
|
|
|
use b::c;
|
|
use c as b;
|
|
|
|
fn main() {}
|