blob: c7eca0c9e00f4128ababe9e6f9975e6e1b9a0f7b [file] [log] [blame]
//@ 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();
}