aboutsummaryrefslogtreecommitdiff
path: root/tests/ui-msrv/transmute-ref-illegal-lifetime.stderr
blob: 866ea56a66fb0257343dc6ee24cfa91bcf27adb0 (plain)
1
2
3
4
5
6
7
8
9
error[E0597]: `x` does not live long enough
  --> tests/ui-msrv/transmute-ref-illegal-lifetime.rs:14:52
   |
14 |     let _: &'static u64 = zerocopy::transmute_ref!(&x);
   |            ------------                            ^^ borrowed value does not live long enough
   |            |
   |            type annotation requires that `x` is borrowed for `'static`
15 | }
   | - `x` dropped here while still borrowed