blob: 01a81cea1eca91be14a0e47b9c6848b43111c27c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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 1 previous error
For more information about this error, try `rustc --explain E0512`.
|