summaryrefslogtreecommitdiffstats
path: root/src/test/ui/packed-struct/packed-struct-transmute.stderr
blob: 80a8919f77b38656956642de9fe20aea67b69132 (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/packed-struct-transmute.rs:26:24
   |
LL |         let oof: Oof = mem::transmute(foo);
   |                        ^^^^^^^^^^^^^^
   |
   = note: source type: `Foo` (N bits)
   = note: target type: `Oof` (N bits)

error: aborting due to previous error

For more information about this error, try `rustc --explain E0512`.