Skip to content

Commit f8f176b

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 182879 b: refs/heads/beta c: 09ba9f5 h: refs/heads/master i: 182877: 939cf18 182875: 604eb60 182871: ccda07a 182863: 72bf568 182847: de3073b v: v3
1 parent a8f4ede commit f8f176b

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: 92e966e099421654c3a76c6cb39f6b9dd6eececc
34+
refs/heads/beta: 09ba9f5c87a24f82d9a332fdb913511eedf5a4ec
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f

branches/beta/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

branches/beta/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)]

branches/beta/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

branches/beta/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)