rust/src/test/ui/imports/rfc-1560-warning-cycle.rs
2018-12-25 21:08:33 -07:00

14 lines
168 B
Rust

pub struct Foo;
mod bar {
struct Foo;
mod baz {
use *;
use bar::*;
fn f(_: Foo) {} //~ ERROR `Foo` is ambiguous
}
}
fn main() {}