]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-45829/rename-use-vs-extern.stderr
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-45829 / rename-use-vs-extern.stderr
1 error[E0254]: the name `issue_45829_b` is defined multiple times
2   --> $DIR/rename-use-vs-extern.rs:4:5
3    |
4 LL | extern crate issue_45829_b;
5    | --------------------------- previous import of the extern crate `issue_45829_b` here
6 LL | use std as issue_45829_b;
7    |     ^^^^^^^^^^^^^^^^^^^^ `issue_45829_b` reimported here
8    |
9    = note: `issue_45829_b` must be defined only once in the type namespace of this module
10 help: you can use `as` to change the binding name of the import
11    |
12 LL | use std as other_issue_45829_b;
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0254`.