]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/resolve-conflict-import-vs-import.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / resolve-conflict-import-vs-import.stderr
1 error[E0252]: the name `transmute` is defined multiple times
2   --> $DIR/resolve-conflict-import-vs-import.rs:5:5
3    |
4 LL | use std::mem::transmute;
5    |     ------------------- previous import of the value `transmute` here
6 LL | use std::mem::transmute;
7    |     ^^^^^^^^^^^^^^^^^^^ `transmute` reimported here
8    |
9    = note: `transmute` must be defined only once in the value namespace of this module
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0252`.