rust/src/test/ui/nll/user-annotations/closure-substs.stderr

38 lines
1.1 KiB
Plaintext
Raw Normal View History

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
...
2019-03-09 06:03:44 -06:00
LL | return x;
2018-10-20 07:38:16 -05:00
| ^ returning this value requires that `'a` must outlive `'static`
2018-11-28 15:05:36 -06:00
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`
2019-03-09 06:03:44 -06:00
LL | return x;
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
...
2019-03-09 06:03:44 -06:00
LL | b(x);
2018-10-22 08:19:33 -05:00
| ^^^^ argument requires that `'a` must outlive `'static`
2018-11-28 15:05:36 -06: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
2019-03-09 06:03:44 -06:00
LL | b(x);
2018-10-20 07:38:16 -05:00
| ^^^^ `x` escapes the closure body here
error: aborting due to 4 previous errors
2018-10-20 07:38:16 -05:00
2021-02-01 11:23:12 -06:00
For more information about this error, try `rustc --explain E0521`.