]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/issue-45829/rename-use-with-tabs.stderr
Auto merge of #79780 - camelid:use-summary_opts, r=GuillaumeGomez
[rust.git] / src / test / ui / imports / issue-45829 / rename-use-with-tabs.stderr
1 error[E0252]: the name `A` is defined multiple times
2   --> $DIR/rename-use-with-tabs.rs:9:14
3    |
4 LL | use foo::{A, bar::B    as    A};
5    |           -  ^^^^^^^^^^^^^^^^^ `A` reimported here
6    |           |
7    |           previous import of the type `A` here
8    |
9    = note: `A` 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 foo::{A, bar::B as OtherA};
13    |              ^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0252`.