@@ -47,7 +47,7 @@ LL | struct Foo<'a>(&'a str);
47
47
help: remove the lifetime arguments
48
48
|
49
49
LL - foo2: Foo<'a, 'b, 'c>,
50
- LL + foo2: Foo<'a, >,
50
+ LL + foo2: Foo<'a>,
51
51
|
52
52
53
53
error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
@@ -64,7 +64,7 @@ LL | struct Qux<'a, T>(&'a T);
64
64
help: remove the lifetime argument
65
65
|
66
66
LL - qux1: Qux<'a, 'b, i32>,
67
- LL + qux1: Qux<'a, , i32>,
67
+ LL + qux1: Qux<'a, i32>,
68
68
|
69
69
70
70
error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
@@ -81,7 +81,7 @@ LL | struct Qux<'a, T>(&'a T);
81
81
help: remove the lifetime argument
82
82
|
83
83
LL - qux2: Qux<'a, i32, 'b>,
84
- LL + qux2: Qux<'a, i32, >,
84
+ LL + qux2: Qux<'a>,
85
85
|
86
86
87
87
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
@@ -98,7 +98,7 @@ LL | struct Qux<'a, T>(&'a T);
98
98
help: remove the lifetime arguments
99
99
|
100
100
LL - qux3: Qux<'a, 'b, 'c, i32>,
101
- LL + qux3: Qux<'a, , i32>,
101
+ LL + qux3: Qux<'a, i32>,
102
102
|
103
103
104
104
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
@@ -115,7 +115,7 @@ LL | struct Qux<'a, T>(&'a T);
115
115
help: remove the lifetime arguments
116
116
|
117
117
LL - qux4: Qux<'a, i32, 'b, 'c>,
118
- LL + qux4: Qux<'a, i32, >,
118
+ LL + qux4: Qux<'a>,
119
119
|
120
120
121
121
error[E0107]: struct takes 1 lifetime argument but 3 lifetime arguments were supplied
@@ -132,7 +132,7 @@ LL | struct Qux<'a, T>(&'a T);
132
132
help: remove the lifetime argument
133
133
|
134
134
LL - qux5: Qux<'a, 'b, i32, 'c>,
135
- LL + qux5: Qux<'a, , i32, 'c>,
135
+ LL + qux5: Qux<'a, i32, 'c>,
136
136
|
137
137
138
138
error[E0107]: struct takes 0 lifetime arguments but 2 lifetime arguments were supplied
0 commit comments