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 @@ -1608,15 +1608,15 @@ mod traits {
1608
1608
fn ne ( & self , other : & str ) -> bool { !( * self ) . eq ( other) }
1609
1609
}
1610
1610
1611
- #[ stable ( feature = "rust1 " , since = "1.24.0 " ) ]
1611
+ #[ unstable ( feature = "str_str_ref_partialeq " , issue = "46934 " ) ]
1612
1612
impl < ' a > PartialEq < & ' a str > for str {
1613
1613
#[ inline]
1614
1614
fn eq ( & self , other : & & ' a str ) -> bool { self == * other }
1615
1615
#[ inline]
1616
1616
fn ne ( & self , other : & & ' a str ) -> bool { self != * other }
1617
1617
}
1618
1618
1619
- #[ stable ( feature = "rust1 " , since = "1.24.0 " ) ]
1619
+ #[ unstable ( feature = "str_str_ref_partialeq " , issue = "46934 " ) ]
1620
1620
impl < ' a > PartialEq < str > for & ' a str {
1621
1621
#[ inline]
1622
1622
fn eq ( & self , other : & str ) -> bool { * self == other }
You can’t perform that action at this time.
0 commit comments