rust/tests/ui/imports/shadow-glob-module-resolution-4.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
320 B
Rust
Raw Normal View History

// https://github.com/rust-lang/rust/issues/126376
mod a {
pub mod b {
pub trait C {}
}
}
use a::*;
use e as b;
use b::C as e;
//~^ ERROR: unresolved import `b::C`
//~| ERROR: cannot determine resolution for the import
//~| ERROR: cannot determine resolution for the import
fn e() {}
fn main() { }