2018-12-11 15:49:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/closure-substs.rs:8:16
|
2018-10-20 07:38:16 -05:00
|
|
|
|
|
|
|
|
LL | fn foo<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
2018-10-22 08:19:33 -05:00
|
|
|
...
|
2018-12-11 15:49:40 -06:00
|
|
|
LL | return x; //~ ERROR lifetime may not live long enough
|
2018-10-20 07:38:16 -05:00
|
|
|
| ^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
|
2018-12-11 15:49:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/closure-substs.rs:15:16
|
2018-10-22 08:19:33 -05:00
|
|
|
|
|
|
|
|
LL | |x: &i32| -> &'static i32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
2018-12-11 15:49:40 -06:00
|
|
|
LL | return x; //~ ERROR lifetime may not live long enough
|
2018-10-22 08:19:33 -05:00
|
|
|
| ^ returning this value requires that `'1` must outlive `'static`
|
|
|
|
|
2018-12-11 15:49:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/closure-substs.rs:22:9
|
2018-10-22 08:19:33 -05:00
|
|
|
|
|
|
|
|
LL | fn bar<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
2018-12-11 15:49:40 -06:00
|
|
|
LL | b(x); //~ ERROR lifetime may not live long enough
|
2018-10-22 08:19:33 -05:00
|
|
|
| ^^^^ argument requires that `'a` must outlive `'static`
|
|
|
|
|
2018-10-22 10:20:17 -05:00
|
|
|
error[E0521]: borrowed data escapes outside of closure
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/closure-substs.rs:29:9
|
2018-10-20 07:38:16 -05:00
|
|
|
|
|
|
|
|
LL | |x: &i32, b: fn(&'static i32)| {
|
|
|
|
| - `x` is a reference that is only valid in the closure body
|
2018-10-22 10:20:17 -05:00
|
|
|
LL | b(x); //~ ERROR borrowed data escapes outside of closure
|
2018-10-20 07:38:16 -05:00
|
|
|
| ^^^^ `x` escapes the closure body here
|
|
|
|
|
2018-10-22 10:20:17 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2018-10-20 07:38:16 -05:00
|
|
|
|
2018-10-22 10:20:17 -05:00
|
|
|
For more information about this error, try `rustc --explain E0521`.
|