rust/tests/ui/error-codes/E0659.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
745 B
Plaintext
Raw Normal View History

error[E0659]: `foo` is ambiguous
2018-12-25 23:56:47 +08:00
--> $DIR/E0659.rs:15:15
2018-02-08 11:35:35 +08:00
|
2019-03-09 20:03:44 +08:00
LL | collider::foo();
| ^^^ ambiguous name
2018-02-08 11:35:35 +08:00
|
= note: ambiguous because of multiple glob imports of a name in the same module
note: `foo` could refer to the function imported here
2018-12-25 23:56:47 +08:00
--> $DIR/E0659.rs:10:13
2018-02-08 11:35:35 +08:00
|
2018-02-23 08:42:32 +08:00
LL | pub use moon::*;
2018-02-08 11:35:35 +08:00
| ^^^^^^^
= help: consider adding an explicit import of `foo` to disambiguate
note: `foo` could also refer to the function imported here
2018-12-25 23:56:47 +08:00
--> $DIR/E0659.rs:11:13
2018-02-08 11:35:35 +08:00
|
2018-02-23 08:42:32 +08:00
LL | pub use earth::*;
2018-02-08 11:35:35 +08:00
| ^^^^^^^^
= help: consider adding an explicit import of `foo` to disambiguate
2018-02-08 11:35:35 +08:00
error: aborting due to previous error
2018-03-03 22:59:40 +08:00
For more information about this error, try `rustc --explain E0659`.