]> git.lizzy.rs Git - rust.git/blob - tests/ui/packed-struct/packed-struct-generic-transmute.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / packed-struct / packed-struct-generic-transmute.stderr
1 error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
2   --> $DIR/packed-struct-generic-transmute.rs:24:38
3    |
4 LL |         let oof: Oof<[u8; 5], i32> = mem::transmute(foo);
5    |                                      ^^^^^^^^^^^^^^
6    |
7    = note: source type: `Foo<[u8; 5], i32>` (72 bits)
8    = note: target type: `Oof<[u8; 5], i32>` (96 bits)
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0512`.