File tree Expand file tree Collapse file tree 5 files changed +1
-9
lines changed Expand file tree Collapse file tree 5 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
32
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
- refs/heads/beta: 92e966e099421654c3a76c6cb39f6b9dd6eececc
34
+ refs/heads/beta: 09ba9f5c87a24f82d9a332fdb913511eedf5a4ec
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
37
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f
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