Skip to content

Commit 7df8b7b

Browse files
author
Jorge Aparicio
committed
remove #[old_impl_check] now that #21363 has been fixed
1 parent 717bbbe commit 7df8b7b

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

src/liballoc/boxed.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,6 @@ impl<T: ?Sized> DerefMut for Box<T> {
250250
fn deref_mut(&mut self) -> &mut T { &mut **self }
251251
}
252252

253-
// FIXME(#21363) remove `old_impl_check` when bug is fixed
254-
#[old_impl_check]
255253
impl<'a, T> Iterator for Box<Iterator<Item=T> + 'a> {
256254
type Item = T;
257255

src/liballoc/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@
7070
#![feature(lang_items, unsafe_destructor)]
7171
#![feature(box_syntax)]
7272
#![feature(optin_builtin_traits)]
73-
// FIXME(#21363) remove `old_impl_check` when bug is fixed
74-
#![feature(old_impl_check)]
7573
#![allow(unknown_features)] #![feature(int_uint)]
7674
#![feature(core)]
7775
#![feature(hash)]

src/libcore/iter.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ pub trait Iterator {
101101
fn size_hint(&self) -> (usize, Option<usize>) { (0, None) }
102102
}
103103

104-
// FIXME(#21363) remove `old_impl_check` when bug is fixed
105-
#[old_impl_check]
106104
impl<'a, T> Iterator for &'a mut (Iterator<Item=T> + 'a) {
107105
type Item = T;
108106

src/libcore/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@
6464
#![feature(unboxed_closures)]
6565
#![allow(unknown_features)] #![feature(int_uint)]
6666
#![feature(on_unimplemented)]
67-
// FIXME(#21363) remove `old_impl_check` when bug is fixed
68-
#![feature(old_impl_check)]
6967
#![deny(missing_docs)]
7068

7169
#[macro_use]

0 commit comments

Comments
 (0)