mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 13:52:33 +00:00
21 lines
282 B
Rust
21 lines
282 B
Rust
// run-pass
|
|
// edition:2018
|
|
|
|
use std;
|
|
use std::io;
|
|
|
|
mod foo {
|
|
pub use std as my_std;
|
|
}
|
|
|
|
mod bar {
|
|
pub use std::{self};
|
|
}
|
|
|
|
fn main() {
|
|
let _ = io::stdout();
|
|
let _ = self::std::io::stdout();
|
|
let _ = foo::my_std::io::stdout();
|
|
let _ = bar::std::io::stdout();
|
|
}
|