2019-08-03 23:07:35 +00:00
|
|
|
error[E0425]: cannot find function `f` in crate `glob_conflict`
|
2018-11-17 17:34:25 +00:00
|
|
|
--> $DIR/glob-conflict-cross-crate.rs:6:20
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | glob_conflict::f();
|
2018-11-17 17:34:25 +00:00
|
|
|
| ^ not found in `glob_conflict`
|
|
|
|
|
2018-12-29 15:15:29 +00:00
|
|
|
error[E0425]: cannot find function `f` in module `glob_conflict::glob`
|
|
|
|
--> $DIR/glob-conflict-cross-crate.rs:7:26
|
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | glob_conflict::glob::f();
|
2018-12-29 15:15:29 +00:00
|
|
|
| ^ not found in `glob_conflict::glob`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-11-17 17:34:25 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0425`.
|