]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/user-annotations/type_ascription_static_lifetime.stderr
Port pgo.sh to Python
[rust.git] / tests / ui / nll / user-annotations / type_ascription_static_lifetime.stderr
1 error[E0597]: `x` does not live long enough
2   --> $DIR/type_ascription_static_lifetime.rs:6:33
3    |
4 LL |     let y: &u32 = type_ascribe!(&x, &'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`.