Skip to content

Commit 61ff96f

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 177832 b: refs/heads/snap-stage3 c: 09ba9f5 h: refs/heads/master v: v3
1 parent 2fb949b commit 61ff96f

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 474b324eda10440d6568ef872a7307d38e7de95b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 92e966e099421654c3a76c6cb39f6b9dd6eececc
4+
refs/heads/snap-stage3: 09ba9f5c87a24f82d9a332fdb913511eedf5a4ec
55
refs/heads/try: fde4472848b662a4d1236388c4cf15e2450237e6
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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/snap-stage3/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/snap-stage3/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/snap-stage3/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)