2018-08-08 14:28:26 +02:00
|
|
|
error[E0252]: the name `mem` is defined multiple times
|
|
|
|
--> $DIR/use-paths-as-items.rs:17:5
|
|
|
|
|
|
|
|
|
LL | use std::{mem, ptr};
|
|
|
|
| --- previous import of the module `mem` here
|
|
|
|
LL | use std::mem; //~ ERROR the name `mem` is defined multiple times
|
|
|
|
| ^^^^^^^^ `mem` reimported here
|
|
|
|
|
|
|
|
|
= note: `mem` must be defined only once in the type namespace of this module
|
2018-10-17 01:21:40 +02:00
|
|
|
help: you can use `as` to change the binding name of the import
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | use std::mem as other_mem; //~ ERROR the name `mem` is defined multiple times
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0252`.
|