rust/src/test/ui/nll/mir_check_cast_reify.stderr

12 lines
308 B
Plaintext
Raw Normal View History

2018-08-07 21:48:50 +01:00
error: unsatisfied lifetime constraints
2018-09-15 18:30:29 +01:00
--> $DIR/mir_check_cast_reify.rs:47:5
|
LL | fn bar<'a>(x: &'a u32) -> &'static u32 {
2018-08-07 21:48:50 +01:00
| -- lifetime `'a` defined here
...
2018-09-15 18:30:29 +01:00
LL | f(x)
| ^^^^ returning this value requires that `'a` must outlive `'static`
error: aborting due to previous error