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