mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
510 B
Plaintext
14 lines
510 B
Plaintext
error[E0252]: the name `transmute` is defined multiple times
|
|
--> $DIR/resolve-conflict-import-vs-import.rs:5:5
|
|
|
|
|
LL | use std::mem::transmute;
|
|
| ------------------- previous import of the value `transmute` here
|
|
LL | use std::mem::transmute;
|
|
| ^^^^^^^^^^^^^^^^^^^ `transmute` reimported here
|
|
|
|
|
= note: `transmute` must be defined only once in the value namespace of this module
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0252`.
|