blob: b6e5804abac48f14827518c6a9787d5e95253399 [file] [log] [blame]
use a::f;
use b::f; //~ ERROR: unresolved import `b::f` [E0432]
//~^ NOTE no `f` in `b`
mod a { pub fn f() {} }
mod b { }
fn main() {
f();
}