1error[E0597]: `x` does not live long enough 2 --> tests/ui-msrv/transmute-mut-illegal-lifetime.rs:14:56 3 | 414 | let _: &'static mut u64 = zerocopy::transmute_mut!(&mut x); 5 | ---------------- ^^^^^^ borrowed value does not live long enough 6 | | 7 | type annotation requires that `x` is borrowed for `'static` 815 | } 9 | - `x` dropped here while still borrowed 10