blob: 50c8fc8229c35a06866212cd185dff8c8ff25740 [file] [log] [blame]
// edition:2018
// This test is similar to `ambiguity.rs`, but nested in a module.
#![allow(non_camel_case_types)]
mod foo {
pub use std::io;
//~^ ERROR `std` is ambiguous
mod std {
pub struct io;
}
}
fn main() {}