]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/issue-45829/rename.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / imports / issue-45829 / rename.stderr
CommitLineData
0bf4aa26 1error[E0252]: the name `core` is defined multiple times
0731742a 2 --> $DIR/rename.rs:2:5
0bf4aa26
XL
3 |
4LL | use core;
5 | ---- previous import of the module `core` here
6LL | use std as core;
7 | ^^^^^^^^^^^ `core` reimported here
8 |
9 = note: `core` 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 std as other_core;
94222f64 13 | ~~~~~~~~~~~~~~~~~
0bf4aa26
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0252`.