1error[E0405]: cannot find trait `FromBytes` in this scope
2  --> tests/ui-msrv/transmute-mut-src-generic.rs:15:31
3   |
415 | fn transmute_mut<T: AsBytes + FromBytes>(t: &mut T) -> &mut u8 {
5   |                               ^^^^^^^^^ not found in this scope
6   |
7help: consider importing this trait
8   |
911 | use zerocopy::FromBytes;
10   |
11