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

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

18 lines
566 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0255]: the name `bar` is defined multiple times
2018-12-25 15:56:47 +00:00
--> $DIR/issue-8640.rs:5:5
2018-07-15 21:11:54 +00:00
|
LL | use baz::bar;
| -------- previous import of the module `bar` here
LL | mod bar {}
| ^^^^^^^ `bar` redefined here
|
= note: `bar` 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-07-15 21:11:54 +00:00
|
LL | use baz::bar as other_bar;
| ~~~~~~~~~~~~~~~~~~~~~
2018-07-15 21:11:54 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0255`.