diff options
Diffstat (limited to 'third_party/rust/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr')
-rw-r--r-- | third_party/rust/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr b/third_party/rust/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr new file mode 100644 index 0000000000..5ff7145966 --- /dev/null +++ b/third_party/rust/zerocopy/tests/ui-msrv/transmute-mut-illegal-lifetime.stderr @@ -0,0 +1,9 @@ +error[E0597]: `x` does not live long enough + --> tests/ui-msrv/transmute-mut-illegal-lifetime.rs:14:56 + | +14 | let _: &'static mut u64 = zerocopy::transmute_mut!(&mut x); + | ---------------- ^^^^^^ borrowed value does not live long enough + | | + | type annotation requires that `x` is borrowed for `'static` +15 | } + | - `x` dropped here while still borrowed |