summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/mir_check_cast_unsafe_fn.stderr
blob: 321d17ba6b10e5c4953cca9293fba88a0d22e26b (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 previous error