2017-12-10 22:47:55 +03:00
|
|
|
error[E0252]: the name `foo` is defined multiple times
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:15:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use a::foo;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ------ previous import of the value `foo` here
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use a::foo;
|
2019-03-10 20:05:01 -07:00
|
|
|
| ^^^^^^ `foo` reimported here
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
|
|
|
= note: `foo` must be defined only once in the value namespace of this module
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `foo` is ambiguous
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:46:15
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use self::foo::bar;
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^^^ ambiguous name
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple glob imports of a name in the same module
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `foo` could refer to the module imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:43:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use self::m1::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
|
|
|
note: `foo` could also refer to the module imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:44:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use self::m2::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `foo` is ambiguous
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:35:8
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | f::foo();
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^^^ ambiguous name
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple glob imports of a name in the same module
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `foo` could refer to the function imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:24:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | pub use a::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
|
|
|
note: `foo` could also refer to the function imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:25:13
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | pub use b::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `foo` is ambiguous
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:49:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo::bar();
|
2018-09-08 02:51:20 +03:00
|
|
|
| ^^^ ambiguous name
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple glob imports of a name in the same module
|
2018-11-05 01:11:59 +03:00
|
|
|
note: `foo` could refer to the module imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:43:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use self::m1::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
|
|
|
note: `foo` could also refer to the module imported here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/duplicate.rs:44:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | use self::m2::*;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^^^^^^^^
|
2018-11-05 01:11:59 +03:00
|
|
|
= help: consider adding an explicit import of `foo` to disambiguate
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2018-12-29 02:48:38 +03:00
|
|
|
error: aborting due to 4 previous errors
|
2017-12-10 22:47:55 +03:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0252, E0659.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0252`.
|