File tree Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Expand file tree Collapse file tree 4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -250,8 +250,6 @@ impl<T: ?Sized> DerefMut for Box<T> {
250
250
fn deref_mut ( & mut self ) -> & mut T { & mut * * self }
251
251
}
252
252
253
- // FIXME(#21363) remove `old_impl_check` when bug is fixed
254
- #[ old_impl_check]
255
253
impl < ' a , T > Iterator for Box < Iterator < Item =T > + ' a > {
256
254
type Item = T ;
257
255
Original file line number Diff line number Diff line change 70
70
#![ feature( lang_items, unsafe_destructor) ]
71
71
#![ feature( box_syntax) ]
72
72
#![ feature( optin_builtin_traits) ]
73
- // FIXME(#21363) remove `old_impl_check` when bug is fixed
74
- #![ feature( old_impl_check) ]
75
73
#![ allow( unknown_features) ] #![ feature( int_uint) ]
76
74
#![ feature( core) ]
77
75
#![ feature( hash) ]
Original file line number Diff line number Diff line change @@ -101,8 +101,6 @@ pub trait Iterator {
101
101
fn size_hint ( & self ) -> ( usize , Option < usize > ) { ( 0 , None ) }
102
102
}
103
103
104
- // FIXME(#21363) remove `old_impl_check` when bug is fixed
105
- #[ old_impl_check]
106
104
impl < ' a , T > Iterator for & ' a mut ( Iterator < Item =T > + ' a ) {
107
105
type Item = T ;
108
106
Original file line number Diff line number Diff line change 64
64
#![ feature( unboxed_closures) ]
65
65
#![ allow( unknown_features) ] #![ feature( int_uint) ]
66
66
#![ feature( on_unimplemented) ]
67
- // FIXME(#21363) remove `old_impl_check` when bug is fixed
68
- #![ feature( old_impl_check) ]
69
67
#![ deny( missing_docs) ]
70
68
71
69
#[ macro_use]
You can’t perform that action at this time.
0 commit comments