2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `main` is ambiguous
|
2021-04-25 12:09:35 -05:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple glob imports of a name in the same module
|
2021-04-25 12:09:35 -05:00
|
|
|
note: `main` could refer to the function imported here
|
|
|
|
--> $DIR/imported_main_conflict.rs:6:5
|
|
|
|
|
|
|
|
|
LL | use m1::*;
|
|
|
|
| ^^^^^
|
|
|
|
= help: consider adding an explicit import of `main` to disambiguate
|
|
|
|
note: `main` could also refer to the function imported here
|
|
|
|
--> $DIR/imported_main_conflict.rs:7:5
|
|
|
|
|
|
|
|
|
LL | use m2::*;
|
|
|
|
| ^^^^^
|
|
|
|
= help: consider adding an explicit import of `main` to disambiguate
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2021-04-25 12:09:35 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|