about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2016-08-06 15:16:32 -0400
committerCorey Farwell <coreyf@rwell.org>2016-08-06 15:16:32 -0400
commit95cce86fa921a85ae8bc3f3eaec73007059f9b4c (patch)
tree47a40832d4f7fd58b85f85fa54fde5089d641d02 /src/libcore
parent444ff9fbfb1f2a8e6645f67684f8a9ad99b343d3 (diff)
Indicate tracking issue for `exact_size_is_empty` unstability.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/iter/traits.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/traits.rs b/src/libcore/iter/traits.rs
index 292d72dd362..4cbabe3f5ed 100644
--- a/src/libcore/iter/traits.rs
+++ b/src/libcore/iter/traits.rs
@@ -548,7 +548,7 @@ pub trait ExactSizeIterator: Iterator {
     /// 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
     }