rust/tests/ui/imports/issue-19498.stderr

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

48 lines
1.4 KiB
Plaintext
Raw Normal View History

error[E0255]: the name `A` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/issue-19498.rs:3:1
|
2018-02-23 00:42:32 +00:00
LL | use self::A;
| ------- previous import of the module `A` here
2018-02-24 23:01:39 +00:00
LL | use self::B;
2019-03-09 12:03:44 +00:00
LL | mod A {}
| ^^^^^ `A` redefined here
|
= note: `A` must be defined only once in the type namespace of this module
help: you can use `as` to change the binding name of the import
|
2018-02-24 23:01:39 +00:00
LL | use self::A as OtherA;
| ~~~~~~~~~~~~~~~~~
error[E0255]: the name `B` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/issue-19498.rs:5:1
|
2018-02-23 00:42:32 +00:00
LL | use self::B;
| ------- previous import of the module `B` here
...
2019-03-09 12:03:44 +00:00
LL | pub mod B {}
| ^^^^^^^^^ `B` redefined here
|
= note: `B` must be defined only once in the type namespace of this module
help: you can use `as` to change the binding name of the import
|
2018-02-24 23:01:39 +00:00
LL | use self::B as OtherB;
| ~~~~~~~~~~~~~~~~~
error[E0255]: the name `D` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/issue-19498.rs:9:5
|
2018-02-23 00:42:32 +00:00
LL | use C::D;
| ---- previous import of the module `D` here
2019-03-09 12:03:44 +00:00
LL | mod D {}
| ^^^^^ `D` redefined here
|
= note: `D` must be defined only once in the type namespace of this module
help: you can use `as` to change the binding name of the import
|
2018-02-24 23:01:39 +00:00
LL | use C::D as OtherD;
| ~~~~~~~~~~~~~~
error: aborting due to 3 previous errors
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0255`.