rust/tests/ui/nll/user-annotations/closure-substs.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-12-11 15:49:40 -06:00
error: lifetime may not live long enough
2022-04-01 13:13:25 -04:00
--> $DIR/closure-substs.rs:6:16
2018-10-20 08:38:16 -04:00
|
LL | fn foo<'a>() {
| -- lifetime `'a` defined here
2018-10-22 09:19:33 -04:00
...
2019-03-09 15:03:44 +03:00
LL | return x;
2018-10-20 08:38:16 -04: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
2022-04-01 13:13:25 -04:00
--> $DIR/closure-substs.rs:13:16
2018-10-22 09:19:33 -04:00
|
LL | |x: &i32| -> &'static i32 {
| - let's call the lifetime of this reference `'1`
2019-03-09 15:03:44 +03:00
LL | return x;
2018-10-22 09:19:33 -04: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
2022-04-01 13:13:25 -04:00
--> $DIR/closure-substs.rs:20:9
2018-10-22 09:19:33 -04:00
|
LL | fn bar<'a>() {
| -- lifetime `'a` defined here
...
2019-03-09 15:03:44 +03:00
LL | b(x);
2018-10-22 09:19:33 -04:00
| ^^^^ argument requires that `'a` must outlive `'static`
2018-11-28 15:05:36 -06:00
error[E0521]: borrowed data escapes outside of closure
2022-04-01 13:13:25 -04:00
--> $DIR/closure-substs.rs:27:9
2018-10-20 08:38:16 -04:00
|
LL | |x: &i32, b: fn(&'static i32)| {
| - - let's call the lifetime of this reference `'1`
| |
| `x` is a reference that is only valid in the closure body
2019-03-09 15:03:44 +03:00
LL | b(x);
| ^^^^
| |
| `x` escapes the closure body here
| argument requires that `'1` must outlive `'static`
2018-10-20 08:38:16 -04:00
error: aborting due to 4 previous errors
2018-10-20 08:38:16 -04:00
2021-02-01 18:23:12 +01:00
For more information about this error, try `rustc --explain E0521`.