2017-12-10 13:47:55 -06:00
|
|
|
error[E0255]: the name `transmute` is defined multiple times
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/resolve-conflict-item-vs-import.rs:13:1
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
11 | use std::mem::transmute;
|
|
|
|
| ------------------- previous import of the value `transmute` here
|
2017-12-10 14:29:24 -06:00
|
|
|
12 |
|
|
|
|
13 | fn transmute() {}
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ `transmute` redefined here
|
|
|
|
|
|
|
|
|
= note: `transmute` must be defined only once in the value namespace of this module
|
|
|
|
help: You can use `as` to change the binding name of the import
|
|
|
|
|
|
|
|
|
11 | use std::mem::transmute as Othertransmute;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|