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

11 lines
321 B
Plaintext
Raw Normal View History

error: unsatisfied lifetime constraints
2018-12-25 09:56:47 -06:00
--> $DIR/region-lbr-named-does-not-outlive-static.rs:9: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