about summary refs log tree commit diff
path: root/tests/ui/nll/mir_check_cast_unsafe_fn.stderr
blob: 94483e94a85f9a955bcf64b64657022e4ebad736 (plain)
1
2
3
4
5
6
7
8
9
10
11
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