]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/path.rs
Merge branch 'refactor-select' of https://github.com/aravind-pg/rust into update...
[rust.git] / src / libstd / path.rs
index 0c54fb00d2d7a74a6d0bde1ddc2acbc2f431edc3..cd2af99d6ac1f47a7beffa8837ad034e80da838e 100644 (file)
@@ -905,7 +905,7 @@ fn next_back(&mut self) -> Option<&'a OsStr> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a> FusedIterator for Iter<'a> {}
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1008,7 +1008,7 @@ fn next_back(&mut self) -> Option<Component<'a>> {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a> FusedIterator for Components<'a> {}
 
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -1076,7 +1076,7 @@ fn next(&mut self) -> Option<Self::Item> {
     }
 }
 
-#[unstable(feature = "fused", issue = "35602")]
+#[unstable(feature = "path_ancestors", issue = "48581")]
 impl<'a> FusedIterator for Ancestors<'a> {}
 
 ////////////////////////////////////////////////////////////////////////////////