1error[E0277]: the trait bound `Src: FromBytes` is not satisfied
2  --> tests/ui-msrv/transmute-mut-src-not-frombytes.rs:24:38
3   |
424 | const SRC_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
5   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromBytes` is not implemented for `Src`
6   |
7note: required by a bound in `AssertSrcIsFromBytes`
8  --> tests/ui-msrv/transmute-mut-src-not-frombytes.rs:24:38
9   |
1024 | const SRC_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
11   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertSrcIsFromBytes`
12   = note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14error[E0277]: the trait bound `Src: FromBytes` is not satisfied
15  --> tests/ui-msrv/transmute-mut-src-not-frombytes.rs:24:38
16   |
1724 | const SRC_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
18   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromBytes` is not implemented for `Src`
19   |
20note: required by a bound in `AssertSrcIsFromBytes`
21  --> tests/ui-msrv/transmute-mut-src-not-frombytes.rs:24:38
22   |
2324 | const SRC_NOT_FROM_BYTES: &mut Dst = transmute_mut!(&mut Src);
24   |                                      ^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertSrcIsFromBytes`
25   = note: this error originates in the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
26