blob: 60f77a1c663c78cdf27f5bd10e23ac39a15f9266 [file] [log] [blame]
// edition:2018
#![allow(non_camel_case_types)]
use std::io;
//~^ ERROR `std` is ambiguous
mod std {
pub struct io;
}
fn main() {}