]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-45829/rename-use-with-tabs.stderr
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-45829 / rename-use-with-tabs.stderr
CommitLineData
0bf4aa26 1error[E0252]: the name `A` is defined multiple times
0731742a 2 --> $DIR/rename-use-with-tabs.rs:9:14
0bf4aa26
XL
3 |
4LL | 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
10help: you can use `as` to change the binding name of the import
11 |
12LL | use foo::{A, bar::B as OtherA};
13 | ^^^^^^^^^^^^^^^^
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0252`.