blob: f5a43373261b2999a01841d17e966e41e047566f [file] [log] [blame] [edit]
// https://github.com/rust-lang/rust/issues/126389
mod a {
pub mod b {
pub mod c {}
}
}
use a::*;
use b::c;
//~^ ERROR: unresolved import `b::c`
//~| ERROR: cannot determine resolution for the import
//~| ERROR: cannot determine resolution for the import
use c as b;
fn c() {}
fn main() { }