]> git.proxmox.com Git - rustc.git/blame - src/test/ui/unresolved/unresolved-extern-mod-suggestion.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / unresolved / unresolved-extern-mod-suggestion.stderr
CommitLineData
b7449926 1error[E0254]: the name `core` is defined multiple times
0731742a 2 --> $DIR/unresolved-extern-mod-suggestion.rs:2:5
b7449926
XL
3 |
4LL | extern crate core;
5 | ------------------ previous import of the extern crate `core` here
6LL | use core;
7 | ^^^^ `core` reimported here
8 |
9 = note: `core` must be defined only once in the type namespace of this module
0bf4aa26 10help: you can use `as` to change the binding name of the import
b7449926
XL
11 |
12LL | use core as other_core;
13 | ^^^^^^^^^^^^^^^^^^
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0254`.