]> git.lizzy.rs Git - rust.git/blob - src/test/ui/use/use-paths-as-items.stderr
Auto merge of #55281 - alexcrichton:revert-demote, r=petrochenkov
[rust.git] / src / test / ui / use / use-paths-as-items.stderr
1 error[E0252]: the name `mem` is defined multiple times
2   --> $DIR/use-paths-as-items.rs:17:5
3    |
4 LL | use std::{mem, ptr};
5    |           --- previous import of the module `mem` here
6 LL | use std::mem; //~ ERROR the name `mem` is defined multiple times
7    |     ^^^^^^^^ `mem` reimported here
8    |
9    = note: `mem` 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 | use std::mem as other_mem; //~ ERROR the name `mem` is defined multiple times
13    |     ^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0252`.