rust/tests/ui/nll/mir_check_cast_unsafe_fn.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

12 lines
374 B
Plaintext

error: lifetime may not live long enough
--> $DIR/mir_check_cast_unsafe_fn.rs:7:14
|
LL | fn bar<'a>(input: &'a u32, f: fn(&'a u32) -> &'a u32) -> &'static u32 {
| -- lifetime `'a` defined here
...
LL | unsafe { g(input) }
| ^^^^^^^^ returning this value requires that `'a` must outlive `'static`
error: aborting due to 1 previous error