rust/src/test/ui/nll/closure-requirements/region-lbr-named-does-not-outlive-static.stderr

11 lines
322 B
Plaintext
Raw Normal View History

error: unsatisfied lifetime constraints
--> $DIR/region-lbr-named-does-not-outlive-static.rs:19:5
|
LL | fn foo<'a>(x: &'a u32) -> &'static u32 {
| -- lifetime `'a` defined here
2018-02-22 18:42:32 -06:00
LL | &*x
2018-08-07 15:48:50 -05:00
| ^^^ returning this value requires that `'a` must outlive `'static`
error: aborting due to previous error