]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/user-annotations/cast_static_lifetime.stderr
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui / nll / user-annotations / cast_static_lifetime.stderr
1 error[E0597]: `x` does not live long enough
2   --> $DIR/cast_static_lifetime.rs:5:19
3    |
4 LL |     let y: &u32 = (&x) as &'static u32;
5    |                   ^^^^----------------
6    |                   |
7    |                   borrowed value does not live long enough
8    |                   type annotation requires that `x` is borrowed for `'static`
9 LL | }
10    | - `x` dropped here while still borrowed
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0597`.