Iterator::flatten: fix tracking issue number on FusedIterator for Flatten

This commit is contained in:
Mazdak Farrokhzad 2018-02-10 07:22:46 +01:00
parent 6af23f977c
commit 36be763d0e
1 changed files with 1 additions and 1 deletions

View File

@ -2555,7 +2555,7 @@ impl<I, U> DoubleEndedIterator for Flatten<I, U>
}
}
#[unstable(feature = "fused", issue = "0")]
#[unstable(feature = "fused", issue = "35602")]
impl<I: FusedIterator, U: Iterator> FusedIterator for Flatten<I, U>
where I::Item: IntoIterator<IntoIter = U, Item = U::Item> {}