Skip to content

Commit 60abb3b

Browse files
author
Jorge Aparicio
committed
fixes after rebase
1 parent 2d76c94 commit 60abb3b

File tree

10 files changed

+2
-10
lines changed

10 files changed

+2
-10
lines changed

src/libcore/iter.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ pub trait FromIterator<A> {
123123
}
124124

125125
/// Conversion into an `Iterator`
126-
#[unstable]
127126
pub trait IntoIterator {
128127
type Iter: Iterator;
129128

src/librustc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
#![feature(unicode)]
4242
#![feature(hash)]
4343
#![cfg_attr(test, feature(test))]
44-
#![allow(unstable)]
4544
// NOTE(stage0) remove cfg_attr after a snapshot
4645
#![cfg_attr(not(stage0), allow(unused_mut))]
4746

src/librustc_trans/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
#![feature(std_misc)]
4242
#![feature(unicode)]
4343
#![feature(hash)]
44-
#![allow(unstable)]
4544
// NOTE(stage0) remove cfg_attr after a snapshot
4645
#![cfg_attr(not(stage0), allow(unused_mut))]
4746

src/librustc_typeck/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ This API is completely unstable and subject to change.
8484
#![feature(core)]
8585
#![feature(rustc_private)]
8686
#![feature(std_misc)]
87-
#![allow(unstable)]
8887
// NOTE(stage0) remove cfg_attr after a snapshot
8988
#![cfg_attr(not(stage0), allow(unused_mut))]
9089

src/librustdoc/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
#![feature(test)]
3333
#![feature(unicode)]
3434
#![feature(hash)]
35-
#![allow(unstable)]
3635
// NOTE(stage0) remove cfg_attr after a snapshot
3736
#![cfg_attr(not(stage0), allow(unused_mut))]
3837

src/libstd/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@
123123
#![feature(rand)]
124124
#![feature(hash)]
125125
#![cfg_attr(test, feature(test))]
126-
#![allow(unstable)]
127126
// NOTE(stage0): remove cfg_attr after a snapshot
128127
#![cfg_attr(not(stage0), allow(unused_mut))]
129128

src/libsyntax/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
#![feature(rustc_private)]
4040
#![feature(std_misc)]
4141
#![feature(unicode)]
42-
#![allow(unstable)]
4342
// NOTE(stage0) remove cfg_attr after a snapshot
4443
#![cfg_attr(not(stage0), allow(unused_mut))]
4544

src/libtest/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
#![feature(rustc_private)]
4545
#![feature(std_misc)]
4646
#![feature(hash)]
47-
#![allow(unstable)]
4847
// NOTE(stage0): remove cfg_attr after a snapshot
4948
#![cfg_attr(not(stage0), allow(unused_mut))]
5049

src/test/compile-fail/issue-20605.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
fn changer<'a>(mut things: Box<Iterator<Item=&'a mut u8>>) {
1212
for item in *things { *item = 0 }
13-
//~^ ERROR the trait `core::marker::Sized` is not implemented for the type `core::iter::Iterator`
13+
//~^ ERROR the trait `core::marker::Sized` is not implemented for the type `core::iter::Iterator
1414
//~^^ ERROR
1515
//~^^^ ERROR
1616
// FIXME(#21528) error should be reported once, not thrice

src/test/compile-fail/issue-2150.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#![deny(unreachable_code)]
1212
#![allow(unused_variables)]
1313
#![allow(dead_code)]
14-
#![allow(unstable)]
14+
#![feature(core)]
1515

1616
fn fail_len(v: Vec<isize> ) -> usize {
1717
let mut i = 3;

0 commit comments

Comments
 (0)