mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
23 lines
749 B
Plaintext
23 lines
749 B
Plaintext
|
error[E0659]: `S` is ambiguous (glob import vs glob import in the same module)
|
||
|
--> $DIR/issue-55884-1.rs:19:12
|
||
|
|
|
||
|
LL | use m::S; //~ ERROR `S` is ambiguous
|
||
|
| ^ ambiguous name
|
||
|
|
|
||
|
note: `S` could refer to the struct imported here
|
||
|
--> $DIR/issue-55884-1.rs:14:13
|
||
|
|
|
||
|
LL | pub use self::m1::*;
|
||
|
| ^^^^^^^^^^^
|
||
|
= help: consider adding an explicit import of `S` to disambiguate
|
||
|
note: `S` could also refer to the struct imported here
|
||
|
--> $DIR/issue-55884-1.rs:15:13
|
||
|
|
|
||
|
LL | pub use self::m2::*;
|
||
|
| ^^^^^^^^^^^
|
||
|
= help: consider adding an explicit import of `S` to disambiguate
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0659`.
|