1error[E0425]: cannot find function `f` in crate `glob_conflict`
2  --> $DIR/glob-conflict-cross-crate.rs:6:20
3   |
4LL |     glob_conflict::f();
5   |                    ^ not found in `glob_conflict`
6
7error[E0425]: cannot find function `f` in module `glob_conflict::glob`
8  --> $DIR/glob-conflict-cross-crate.rs:7:26
9   |
10LL |     glob_conflict::glob::f();
11   |                          ^ not found in `glob_conflict::glob`
12
13error: aborting due to 2 previous errors
14
15For more information about this error, try `rustc --explain E0425`.
16