blob: 42c3c20686b368aaba536130df90e80582d54c1c [file] [log] [blame]
// edition: 2021
// aux-build: extern-with-ambiguous-1-extern.rs
// `extern-with-ambiguous-1-extern.rs` doesn't has
// ambiguous, just for compare.
extern crate extern_with_ambiguous_1_extern;
mod s {
pub mod error {
use extern_with_ambiguous_1_extern::*;
}
}
use s::*;
use extern_with_ambiguous_1_extern::*;
use error::*;
//~^ ERROR `error` is ambiguous
fn main() {}