diff --git a/src/libcore/iter/mod.rs b/src/libcore/iter/mod.rs index f9b818f5bff35..424c24814ac96 100644 --- a/src/libcore/iter/mod.rs +++ b/src/libcore/iter/mod.rs @@ -1813,10 +1813,6 @@ impl Iterator for Scan where } } -#[unstable(feature = "fused", issue = "35602")] -impl FusedIterator for Scan - where I: FusedIterator, F: FnMut(&mut St, I::Item) -> Option {} - /// An iterator that maps each element to an iterator, and yields the elements /// of the produced iterators. ///