]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/glob-conflict-cross-crate.stderr
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / ui / imports / glob-conflict-cross-crate.stderr
1 error[E0425]: cannot find function `f` in crate `glob_conflict`
2   --> $DIR/glob-conflict-cross-crate.rs:6:20
3    |
4 LL |     glob_conflict::f();
5    |                    ^ not found in `glob_conflict`
6
7 error[E0425]: cannot find function `f` in module `glob_conflict::glob`
8   --> $DIR/glob-conflict-cross-crate.rs:7:26
9    |
10 LL |     glob_conflict::glob::f();
11    |                          ^ not found in `glob_conflict::glob`
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0425`.