1error[E0597]: `x` does not live long enough
2  --> tests/ui-nightly/transmute-mut-illegal-lifetime.rs:14:56
3   |
412 |     let mut x = 0u64;
5   |         ----- binding `x` declared here
613 |     // It is illegal to increase the lifetime scope.
714 |     let _: &'static mut u64 = zerocopy::transmute_mut!(&mut x);
8   |            ----------------                            ^^^^^^ borrowed value does not live long enough
9   |            |
10   |            type annotation requires that `x` is borrowed for `'static`
1115 | }
12   | - `x` dropped here while still borrowed
13