diff options
| author | Corey Farwell <coreyf@rwell.org> | 2016-08-06 15:16:32 -0400 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2016-08-06 15:16:32 -0400 |
| commit | 95cce86fa921a85ae8bc3f3eaec73007059f9b4c (patch) | |
| tree | 47a40832d4f7fd58b85f85fa54fde5089d641d02 /src/libcore | |
| parent | 444ff9fbfb1f2a8e6645f67684f8a9ad99b343d3 (diff) | |
Indicate tracking issue for `exact_size_is_empty` unstability.
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/iter/traits.rs | 2 |
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 } |
