@@ -248,7 +248,7 @@ use crate::ops::ControlFlow;
248
248
) ]
249
249
#[ rustc_diagnostic_item = "PartialEq" ]
250
250
#[ const_trait]
251
- #[ rustc_const_unstable( feature = "const_trait_impl " , issue = "67792 " ) ]
251
+ #[ rustc_const_unstable( feature = "const_cmp " , issue = "143800 " ) ]
252
252
pub trait PartialEq < Rhs : PointeeSized = Self > : PointeeSized {
253
253
/// Tests for `self` and `other` values to be equal, and is used by `==`.
254
254
#[ must_use]
@@ -1809,7 +1809,7 @@ mod impls {
1809
1809
macro_rules! partial_eq_impl {
1810
1810
( $( $t: ty) * ) => ( $(
1811
1811
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1812
- #[ rustc_const_unstable( feature = "const_cmp" , issue = "92391 " ) ]
1812
+ #[ rustc_const_unstable( feature = "const_cmp" , issue = "143800 " ) ]
1813
1813
impl const PartialEq for $t {
1814
1814
#[ inline]
1815
1815
fn eq( & self , other: & Self ) -> bool { * self == * other }
@@ -2017,7 +2017,7 @@ mod impls {
2017
2017
// & pointers
2018
2018
2019
2019
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2020
- #[ rustc_const_unstable( feature = "const_cmp" , issue = "92391 " ) ]
2020
+ #[ rustc_const_unstable( feature = "const_cmp" , issue = "143800 " ) ]
2021
2021
impl < A : PointeeSized , B : PointeeSized > const PartialEq < & B > for & A
2022
2022
where
2023
2023
A : ~const PartialEq < B > ,
@@ -2089,7 +2089,7 @@ mod impls {
2089
2089
// &mut pointers
2090
2090
2091
2091
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2092
- #[ rustc_const_unstable( feature = "const_cmp" , issue = "92391 " ) ]
2092
+ #[ rustc_const_unstable( feature = "const_cmp" , issue = "143800 " ) ]
2093
2093
impl < A : PointeeSized , B : PointeeSized > const PartialEq < & mut B > for & mut A
2094
2094
where
2095
2095
A : ~const PartialEq < B > ,
@@ -2159,7 +2159,7 @@ mod impls {
2159
2159
impl < A : PointeeSized > Eq for & mut A where A : Eq { }
2160
2160
2161
2161
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2162
- #[ rustc_const_unstable( feature = "const_cmp" , issue = "92391 " ) ]
2162
+ #[ rustc_const_unstable( feature = "const_cmp" , issue = "143800 " ) ]
2163
2163
impl < A : PointeeSized , B : PointeeSized > const PartialEq < & mut B > for & A
2164
2164
where
2165
2165
A : ~const PartialEq < B > ,
@@ -2175,7 +2175,7 @@ mod impls {
2175
2175
}
2176
2176
2177
2177
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2178
- #[ rustc_const_unstable( feature = "const_cmp" , issue = "92391 " ) ]
2178
+ #[ rustc_const_unstable( feature = "const_cmp" , issue = "143800 " ) ]
2179
2179
impl < A : PointeeSized , B : PointeeSized > const PartialEq < & B > for & mut A
2180
2180
where
2181
2181
A : ~const PartialEq < B > ,
0 commit comments