oden/third-party/vendor/zerocopy/tests/ui-msrv/transmute-ref-illegal-lifetime.stderr
2024-03-08 11:03:01 -08:00

9 lines
416 B
Text

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