rust/tests/ui/resolve/issue-109153.rs

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

15 lines
179 B
Rust
Raw Normal View History

use foo::*;
mod foo {
pub mod bar {
pub mod bar {
pub mod bar {}
}
}
}
use bar::bar; //~ ERROR `bar` is ambiguous
use bar::*;
fn main() { }