mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
401 B
Plaintext
13 lines
401 B
Plaintext
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
|
--> $DIR/issue-32377.rs:15:14
|
|
|
|
|
LL | unsafe { mem::transmute(x) }
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= note: source type: `[usize; 2]` (N bits)
|
|
= note: target type: `Bar<U>` (N bits)
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0512`.
|