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> {
20452045 }
20462046}
20472047
2048- #[ unstable( feature = "spec_option_partial_eq" , issue = "none" ) ]
2048+ #[ unstable( feature = "spec_option_partial_eq" , issue = "none" , reason = "exposed only for rustc" ) ]
20492049#[ doc( hidden) ]
20502050pub trait SpecOptionPartialEq : Sized {
20512051 fn eq ( l : & Option < Self > , other : & Option < Self > ) -> bool ;
20522052}
20532053
2054- #[ unstable( feature = "spec_option_partial_eq" , issue = "none" ) ]
2054+ #[ unstable( feature = "spec_option_partial_eq" , issue = "none" , reason = "exposed only for rustc" ) ]
20552055impl < T : PartialEq > SpecOptionPartialEq for T {
20562056 #[ inline]
20572057 default fn eq ( l : & Option < T > , r : & Option < T > ) -> bool {
You can’t perform that action at this time.
0 commit comments