]> git.lizzy.rs Git - rust.git/commitdiff
Indicate tracking issue for `exact_size_is_empty` unstability.
authorCorey Farwell <coreyf@rwell.org>
Sat, 6 Aug 2016 19:16:32 +0000 (15:16 -0400)
committerCorey Farwell <coreyf@rwell.org>
Sat, 6 Aug 2016 19:16:32 +0000 (15:16 -0400)
src/libcore/iter/traits.rs

index 292d72dd362ad5c203497361cd9cda2febfaebc7..4cbabe3f5edafc1036216b05470c7cd7d5478169 100644 (file)
@@ -548,7 +548,7 @@ fn len(&self) -> usize {
     /// assert_eq!(one_element.next(), None);
     /// ```
     #[inline]
-    #[unstable(feature = "exact_size_is_empty", issue = "0")]
+    #[unstable(feature = "exact_size_is_empty", issue = "35428")]
     fn is_empty(&self) -> bool {
         self.len() == 0
     }