Skip to content

Commit eb8a983

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 177574 b: refs/heads/auto c: 60abb3b h: refs/heads/master v: v3
1 parent 0c8d605 commit eb8a983

File tree

11 files changed

+3
-11
lines changed

11 files changed

+3
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: 2d76c94dd077406d030a9b7058fb52f979db8bd2
13+
refs/heads/auto: 60abb3bef2242a8a8be960f2e563036753de336c
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

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

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

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

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

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

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

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

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

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

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