1error[E0512]: cannot transmute between types of different sizes, or dependently-sized types 2 --> tests/ui-msrv/transmute-ref-src-generic.rs:17:5 3 | 417 | transmute_ref!(t) 5 | ^^^^^^^^^^^^^^^^^ 6 | 7 = note: source type: `T` (this type does not have a fixed size) 8 = note: target type: `u8` (8 bits) 9 = note: this error originates in the macro `$crate::assert_size_eq` (in Nightly builds, run with -Z macro-backtrace for more info) 10 11error[E0512]: cannot transmute between types of different sizes, or dependently-sized types 12 --> tests/ui-msrv/transmute-ref-src-generic.rs:17:5 13 | 1417 | transmute_ref!(t) 15 | ^^^^^^^^^^^^^^^^^ 16 | 17 = note: source type: `AlignOf<T>` (size can vary because of T) 18 = note: target type: `MaxAlignsOf<T, u8>` (size can vary because of T) 19 = note: this error originates in the macro `$crate::assert_align_gt_eq` (in Nightly builds, run with -Z macro-backtrace for more info) 20