2018-11-04 16:11:59 -06:00
|
|
|
error[E0659]: `foo` is ambiguous (glob import vs glob import in the same module)
|
2018-09-07 18:51:20 -05:00
|
|
|
--> $DIR/E0659.rs:25:15
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | collider::foo(); //~ ERROR E0659
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^ ambiguous name
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `foo` could refer to the function imported here
|
2018-02-07 21:35:35 -06:00
|
|
|
--> $DIR/E0659.rs:20:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | pub use moon::*;
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^^
|
2018-11-04 16:11:59 -06:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
|
|
|
note: `foo` could also refer to the function imported here
|
2018-02-07 21:35:35 -06:00
|
|
|
--> $DIR/E0659.rs:21:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | pub use earth::*;
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^^^
|
2018-11-04 16:11:59 -06:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
2018-02-07 21:35:35 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|