]> git.lizzy.rs Git - rust.git/blob - tests/ui/extern/extern-crate-rename.stderr
Move /src/test to /tests
[rust.git] / tests / ui / extern / extern-crate-rename.stderr
1 error[E0259]: the name `m1` is defined multiple times
2   --> $DIR/extern-crate-rename.rs:6:1
3    |
4 LL | extern crate m1;
5    | ---------------- previous import of the extern crate `m1` here
6 LL | extern crate m2 as m1;
7    | ^^^^^^^^^^^^^^^^^^^^^^ `m1` reimported here
8    |
9    = note: `m1` must be defined only once in the type namespace of this module
10 help: you can use `as` to change the binding name of the import
11    |
12 LL | extern crate m2 as other_m1;
13    | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0259`.