mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
Iterator::flatten: fix tracking issue number on FusedIterator for Flatten
This commit is contained in:
parent
6af23f977c
commit
36be763d0e
@ -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> {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user