2018-10-20 07:38:16 -05:00
|
|
|
error: unsatisfied lifetime constraints
|
2018-10-22 08:19:33 -05:00
|
|
|
--> $DIR/closure-substs.rs:18: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
|
|
|
...
|
|
|
|
LL | return x; //~ ERROR unsatisfied lifetime constraints
|
2018-10-20 07:38:16 -05:00
|
|
|
| ^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
|
2018-10-22 08:19:33 -05:00
|
|
|
error: unsatisfied lifetime constraints
|
|
|
|
--> $DIR/closure-substs.rs:25:16
|
|
|
|
|
|
|
|
|
LL | |x: &i32| -> &'static i32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
|
|
|
LL | return x; //~ ERROR unsatisfied lifetime constraints
|
|
|
|
| ^ returning this value requires that `'1` must outlive `'static`
|
|
|
|
|
|
|
|
error: unsatisfied lifetime constraints
|
|
|
|
--> $DIR/closure-substs.rs:25:16
|
|
|
|
|
|
|
|
|
LL | |x: &i32| -> &'static i32 {
|
|
|
|
| - - return type of closure is &'2 i32
|
|
|
|
| |
|
|
|
|
| let's call the lifetime of this reference `'1`
|
|
|
|
LL | return x; //~ ERROR unsatisfied lifetime constraints
|
|
|
|
| ^ returning this value requires that `'1` must outlive `'2`
|
|
|
|
|
|
|
|
error: unsatisfied lifetime constraints
|
|
|
|
--> $DIR/closure-substs.rs:25:16
|
|
|
|
|
|
|
|
|
LL | |x: &i32| -> &'static i32 {
|
|
|
|
| -------------------------
|
|
|
|
| | |
|
|
|
|
| | let's call the lifetime of this reference `'1`
|
|
|
|
| lifetime `'2` represents this closure's body
|
|
|
|
LL | return x; //~ ERROR unsatisfied lifetime constraints
|
|
|
|
| ^ closure was supposed to return data with lifetime `'2` but it is returning data with lifetime `'1`
|
|
|
|
|
|
|
|
|
= note: closure implements `Fn`, so references to captured variables can't escape the closure
|
|
|
|
|
|
|
|
error: unsatisfied lifetime constraints
|
|
|
|
--> $DIR/closure-substs.rs:34:9
|
|
|
|
|
|
|
|
|
LL | fn bar<'a>() {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | b(x); //~ ERROR unsatisfied lifetime constraints
|
|
|
|
| ^^^^ argument requires that `'a` must outlive `'static`
|
|
|
|
|
2018-10-20 07:38:16 -05:00
|
|
|
error: borrowed data escapes outside of closure
|
2018-10-22 08:19:33 -05:00
|
|
|
--> $DIR/closure-substs.rs:41: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
|
|
|
|
LL | b(x); //~ ERROR
|
|
|
|
| ^^^^ `x` escapes the closure body here
|
|
|
|
|
|
|
|
error: borrowed data escapes outside of closure
|
2018-10-22 08:19:33 -05:00
|
|
|
--> $DIR/closure-substs.rs:41:9
|
2018-10-20 07:38:16 -05:00
|
|
|
|
|
|
|
|
LL | |x: &i32, b: fn(&'static i32)| {
|
|
|
|
| - - `b` is declared here, outside of the closure body
|
|
|
|
| |
|
|
|
|
| `x` is a reference that is only valid in the closure body
|
|
|
|
LL | b(x); //~ ERROR
|
|
|
|
| ^^^^ `x` escapes the closure body here
|
|
|
|
|
|
|
|
error: unsatisfied lifetime constraints
|
2018-10-22 08:19:33 -05:00
|
|
|
--> $DIR/closure-substs.rs:41:9
|
2018-10-20 07:38:16 -05:00
|
|
|
|
|
|
|
|
LL | |x: &i32, b: fn(&'static i32)| {
|
|
|
|
| ------------------------------
|
|
|
|
| | |
|
|
|
|
| | let's call the lifetime of this reference `'1`
|
|
|
|
| lifetime `'2` represents this closure's body
|
|
|
|
LL | b(x); //~ ERROR
|
|
|
|
| ^^^^ argument requires that `'1` must outlive `'2`
|
|
|
|
|
|
|
|
|
= note: closure implements `Fn`, so references to captured variables can't escape the closure
|
|
|
|
|
2018-10-22 08:19:33 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2018-10-20 07:38:16 -05:00
|
|
|
|