1
1
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
2
- --> $DIR/lt-ref-self-async.rs:13 :42
2
+ --> $DIR/lt-ref-self-async.rs:12 :42
3
3
|
4
4
LL | async fn ref_self(&self, f: &u32) -> &u32 {
5
5
| ^^^^
6
6
|
7
7
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
8
8
9
9
error: lifetime may not live long enough
10
- --> $DIR/lt-ref-self-async.rs:14 :9
10
+ --> $DIR/lt-ref-self-async.rs:13 :9
11
11
|
12
12
LL | async fn ref_self(&self, f: &u32) -> &u32 {
13
13
| -
@@ -18,15 +18,15 @@ LL | f
18
18
| ^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
19
19
20
20
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
21
- --> $DIR/lt-ref-self-async.rs:19 :48
21
+ --> $DIR/lt-ref-self-async.rs:18 :48
22
22
|
23
23
LL | async fn ref_Self(self: &Self, f: &u32) -> &u32 {
24
24
| ^^^^
25
25
|
26
26
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
27
27
28
28
error: lifetime may not live long enough
29
- --> $DIR/lt-ref-self-async.rs:20 :9
29
+ --> $DIR/lt-ref-self-async.rs:19 :9
30
30
|
31
31
LL | async fn ref_Self(self: &Self, f: &u32) -> &u32 {
32
32
| -
@@ -37,15 +37,15 @@ LL | f
37
37
| ^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
38
38
39
39
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
40
- --> $DIR/lt-ref-self-async.rs:23 :57
40
+ --> $DIR/lt-ref-self-async.rs:22 :57
41
41
|
42
42
LL | async fn box_ref_Self(self: Box<&Self>, f: &u32) -> &u32 {
43
43
| ^^^^
44
44
|
45
45
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
46
46
47
47
error: lifetime may not live long enough
48
- --> $DIR/lt-ref-self-async.rs:24 :9
48
+ --> $DIR/lt-ref-self-async.rs:23 :9
49
49
|
50
50
LL | async fn box_ref_Self(self: Box<&Self>, f: &u32) -> &u32 {
51
51
| -
@@ -56,15 +56,15 @@ LL | f
56
56
| ^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
57
57
58
58
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
59
- --> $DIR/lt-ref-self-async.rs:27 :57
59
+ --> $DIR/lt-ref-self-async.rs:26 :57
60
60
|
61
61
LL | async fn pin_ref_Self(self: Pin<&Self>, f: &u32) -> &u32 {
62
62
| ^^^^
63
63
|
64
64
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
65
65
66
66
error: lifetime may not live long enough
67
- --> $DIR/lt-ref-self-async.rs:28 :9
67
+ --> $DIR/lt-ref-self-async.rs:27 :9
68
68
|
69
69
LL | async fn pin_ref_Self(self: Pin<&Self>, f: &u32) -> &u32 {
70
70
| -
@@ -75,15 +75,15 @@ LL | f
75
75
| ^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
76
76
77
77
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
78
- --> $DIR/lt-ref-self-async.rs:31 :66
78
+ --> $DIR/lt-ref-self-async.rs:30 :66
79
79
|
80
80
LL | async fn box_box_ref_Self(self: Box<Box<&Self>>, f: &u32) -> &u32 {
81
81
| ^^^^
82
82
|
83
83
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
84
84
85
85
error: lifetime may not live long enough
86
- --> $DIR/lt-ref-self-async.rs:32 :9
86
+ --> $DIR/lt-ref-self-async.rs:31 :9
87
87
|
88
88
LL | async fn box_box_ref_Self(self: Box<Box<&Self>>, f: &u32) -> &u32 {
89
89
| -
@@ -94,15 +94,15 @@ LL | f
94
94
| ^ function was supposed to return data with lifetime `'_` but it is returning data with lifetime `'_`
95
95
96
96
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
97
- --> $DIR/lt-ref-self-async.rs:35 :62
97
+ --> $DIR/lt-ref-self-async.rs:34 :62
98
98
|
99
99
LL | async fn box_pin_Self(self: Box<Pin<&Self>>, f: &u32) -> &u32 {
100
100
| ^^^^
101
101
|
102
102
= note: hidden type `impl std::future::Future` captures lifetime '_#23r
103
103
104
104
error: lifetime may not live long enough
105
- --> $DIR/lt-ref-self-async.rs:36 :9
105
+ --> $DIR/lt-ref-self-async.rs:35 :9
106
106
|
107
107
LL | async fn box_pin_Self(self: Box<Pin<&Self>>, f: &u32) -> &u32 {
108
108
| -
0 commit comments