File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2045,13 +2045,13 @@ impl<T: PartialEq> PartialEq for Option<T> {
2045
2045
}
2046
2046
}
2047
2047
2048
- #[ unstable( feature = "spec_option_partial_eq" , issue = "none" ) ]
2048
+ #[ unstable( feature = "spec_option_partial_eq" , issue = "none" , reason = "exposed only for rustc" ) ]
2049
2049
#[ doc( hidden) ]
2050
2050
pub trait SpecOptionPartialEq : Sized {
2051
2051
fn eq ( l : & Option < Self > , other : & Option < Self > ) -> bool ;
2052
2052
}
2053
2053
2054
- #[ unstable( feature = "spec_option_partial_eq" , issue = "none" ) ]
2054
+ #[ unstable( feature = "spec_option_partial_eq" , issue = "none" , reason = "exposed only for rustc" ) ]
2055
2055
impl < T : PartialEq > SpecOptionPartialEq for T {
2056
2056
#[ inline]
2057
2057
default fn eq ( l : & Option < T > , r : & Option < T > ) -> bool {
You can’t perform that action at this time.
0 commit comments