We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 994cdd9 commit 2e75b07Copy full SHA for 2e75b07
src/libstd/ffi/os_str.rs
@@ -420,14 +420,14 @@ impl PartialEq<OsString> for str {
420
}
421
422
423
-#[stable(feature = "os_str_str_ref_eq", since = "1.28.0")]
+#[stable(feature = "os_str_str_ref_eq", since = "1.29.0")]
424
impl<'a> PartialEq<&'a str> for OsString {
425
fn eq(&self, other: &&'a str) -> bool {
426
**self == **other
427
428
429
430
431
impl<'a> PartialEq<OsString> for &'a str {
432
fn eq(&self, other: &OsString) -> bool {
433
**other == **self
0 commit comments