rust/tests/ui/imports/duplicate.stderr

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

75 lines
2.3 KiB
Plaintext
Raw Normal View History

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