2017-11-07 20:01:35 -06:00
|
|
|
error[E0259]: the name `m1` is defined multiple times
|
|
|
|
--> $DIR/extern-crate-rename.rs:16:1
|
|
|
|
|
|
|
|
|
15 | extern crate m1;
|
|
|
|
| ---------------- previous import of the extern crate `m1` here
|
2017-11-20 06:13:27 -06:00
|
|
|
16 | extern crate m2 as m1; //~ ERROR is defined multiple times
|
2017-11-07 20:01:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| `m1` reimported here
|
|
|
|
| You can use `as` to change the binding name of the import
|
|
|
|
|
|
|
|
|
= note: `m1` must be defined only once in the type namespace of this module
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0259"
|