@@ -250,7 +250,7 @@ where
250250}
251251
252252#[ stable( feature = "rust1" , since = "1.0.0" ) ]
253- impl < ' a , ' b , A , B , const N : usize > PartialEq < [ A ; N ] > for [ B ]
253+ impl < A , B , const N : usize > PartialEq < [ A ; N ] > for [ B ]
254254where
255255 B : PartialEq < A > ,
256256 [ A ; N ] : LengthAtMost32 ,
@@ -266,7 +266,7 @@ where
266266}
267267
268268#[ stable( feature = "rust1" , since = "1.0.0" ) ]
269- impl < ' a , ' b , A , B , const N : usize > PartialEq < & ' b [ B ] > for [ A ; N ]
269+ impl < ' b , A , B , const N : usize > PartialEq < & ' b [ B ] > for [ A ; N ]
270270where
271271 A : PartialEq < B > ,
272272 [ A ; N ] : LengthAtMost32 ,
@@ -282,7 +282,7 @@ where
282282}
283283
284284#[ stable( feature = "rust1" , since = "1.0.0" ) ]
285- impl < ' a , ' b , A , B , const N : usize > PartialEq < [ A ; N ] > for & ' b [ B ]
285+ impl < ' b , A , B , const N : usize > PartialEq < [ A ; N ] > for & ' b [ B ]
286286where
287287 B : PartialEq < A > ,
288288 [ A ; N ] : LengthAtMost32 ,
@@ -298,7 +298,7 @@ where
298298}
299299
300300#[ stable( feature = "rust1" , since = "1.0.0" ) ]
301- impl < ' a , ' b , A , B , const N : usize > PartialEq < & ' b mut [ B ] > for [ A ; N ]
301+ impl < ' b , A , B , const N : usize > PartialEq < & ' b mut [ B ] > for [ A ; N ]
302302where
303303 A : PartialEq < B > ,
304304 [ A ; N ] : LengthAtMost32 ,
@@ -314,7 +314,7 @@ where
314314}
315315
316316#[ stable( feature = "rust1" , since = "1.0.0" ) ]
317- impl < ' a , ' b , A , B , const N : usize > PartialEq < [ A ; N ] > for & ' b mut [ B ]
317+ impl < ' b , A , B , const N : usize > PartialEq < [ A ; N ] > for & ' b mut [ B ]
318318where
319319 B : PartialEq < A > ,
320320 [ A ; N ] : LengthAtMost32 ,
0 commit comments