diff options
Diffstat (limited to 'src/libcore/array.rs')
| -rw-r--r-- | src/libcore/array.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/array.rs b/src/libcore/array.rs index 6023bc21e74..517893a1967 100644 --- a/src/libcore/array.rs +++ b/src/libcore/array.rs @@ -217,7 +217,7 @@ where } #[stable(feature = "rust1", since = "1.0.0")] -impl<'a, 'b, A, B, const N: usize> PartialEq<[B; N]> for [A; N] +impl<A, B, const N: usize> PartialEq<[B; N]> for [A; N] where A: PartialEq<B>, [A; N]: LengthAtMost32, @@ -234,7 +234,7 @@ where } #[stable(feature = "rust1", since = "1.0.0")] -impl<'a, 'b, A, B, const N: usize> PartialEq<[B]> for [A; N] +impl<A, B, const N: usize> PartialEq<[B]> for [A; N] where A: PartialEq<B>, [A; N]: LengthAtMost32, |
