]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/extern-crate-rename.stderr
New upstream version 1.28.0+dfsg1
[rustc.git] / src / test / ui / suggestions / extern-crate-rename.stderr
CommitLineData
abe05a73
XL
1error[E0259]: the name `m1` is defined multiple times
2 --> $DIR/extern-crate-rename.rs:16:1
3 |
0531ce1d 4LL | extern crate m1;
abe05a73 5 | ---------------- previous import of the extern crate `m1` here
0531ce1d 6LL | extern crate m2 as m1; //~ ERROR is defined multiple times
abe05a73
XL
7 | ^^^^^^^^^^^^^^^^^^^^^^
8 | |
9 | `m1` reimported here
10 | You can use `as` to change the binding name of the import
11 |
12 = note: `m1` must be defined only once in the type namespace of this module
13
14error: aborting due to previous error
15
0531ce1d 16For more information about this error, try `rustc --explain E0259`.