@@ -166,8 +166,8 @@ LL | pub union Qux<'t, 'k, I> {
166
166
| ^^^ -- --
167
167
help: add missing lifetime argument
168
168
|
169
- LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
170
- | ++++
169
+ LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
170
+ | +++++++++
171
171
172
172
error[E0107]: this union takes 2 lifetime arguments but 1 lifetime argument was supplied
173
173
--> $DIR/missing-lifetime-specifier.rs:39:44
@@ -184,8 +184,8 @@ LL | pub union Qux<'t, 'k, I> {
184
184
| ^^^ -- --
185
185
help: add missing lifetime argument
186
186
|
187
- LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
188
- | ++++
187
+ LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
188
+ | +++++++++
189
189
190
190
error[E0107]: this union takes 2 lifetime arguments but 1 lifetime argument was supplied
191
191
--> $DIR/missing-lifetime-specifier.rs:39:44
@@ -202,8 +202,8 @@ LL | pub union Qux<'t, 'k, I> {
202
202
| ^^^ -- --
203
203
help: add missing lifetime argument
204
204
|
205
- LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
206
- | ++++
205
+ LL | static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
206
+ | +++++++++
207
207
208
208
error[E0107]: this union takes 2 lifetime arguments but 1 lifetime argument was supplied
209
209
--> $DIR/missing-lifetime-specifier.rs:39:44
@@ -256,8 +256,8 @@ LL | trait Tar<'t, 'k, I> {}
256
256
| ^^^ -- --
257
257
help: add missing lifetime argument
258
258
|
259
- LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
260
- | ++++
259
+ LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
260
+ | +++++++++
261
261
262
262
error[E0107]: this trait takes 2 lifetime arguments but 1 lifetime argument was supplied
263
263
--> $DIR/missing-lifetime-specifier.rs:47:45
@@ -274,8 +274,8 @@ LL | trait Tar<'t, 'k, I> {}
274
274
| ^^^ -- --
275
275
help: add missing lifetime argument
276
276
|
277
- LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
278
- | ++++
277
+ LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
278
+ | +++++++++
279
279
280
280
error[E0107]: this trait takes 2 lifetime arguments but 1 lifetime argument was supplied
281
281
--> $DIR/missing-lifetime-specifier.rs:47:45
@@ -292,8 +292,8 @@ LL | trait Tar<'t, 'k, I> {}
292
292
| ^^^ -- --
293
293
help: add missing lifetime argument
294
294
|
295
- LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'k , i32>>>>> = RefCell::new(HashMap::new());
296
- | ++++
295
+ LL | static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, 'static , i32>>>>> = RefCell::new(HashMap::new());
296
+ | +++++++++
297
297
298
298
error[E0107]: this trait takes 2 lifetime arguments but 1 lifetime argument was supplied
299
299
--> $DIR/missing-lifetime-specifier.rs:47:45
0 commit comments