File tree Expand file tree Collapse file tree 11 files changed +3
-11
lines changed Expand file tree Collapse file tree 11 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
10
10
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
11
11
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
12
12
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13
- refs/heads/auto: 2d76c94dd077406d030a9b7058fb52f979db8bd2
13
+ refs/heads/auto: 60abb3bef2242a8a8be960f2e563036753de336c
14
14
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
15
15
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
16
16
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ pub trait FromIterator<A> {
123
123
}
124
124
125
125
/// Conversion into an `Iterator`
126
- #[ unstable]
127
126
pub trait IntoIterator {
128
127
type Iter : Iterator ;
129
128
Original file line number Diff line number Diff line change 41
41
#![ feature( unicode) ]
42
42
#![ feature( hash) ]
43
43
#![ cfg_attr( test, feature( test) ) ]
44
- #![ allow( unstable) ]
45
44
// NOTE(stage0) remove cfg_attr after a snapshot
46
45
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
47
46
Original file line number Diff line number Diff line change 41
41
#![ feature( std_misc) ]
42
42
#![ feature( unicode) ]
43
43
#![ feature( hash) ]
44
- #![ allow( unstable) ]
45
44
// NOTE(stage0) remove cfg_attr after a snapshot
46
45
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
47
46
Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ This API is completely unstable and subject to change.
84
84
#![ feature( core) ]
85
85
#![ feature( rustc_private) ]
86
86
#![ feature( std_misc) ]
87
- #![ allow( unstable) ]
88
87
// NOTE(stage0) remove cfg_attr after a snapshot
89
88
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
90
89
Original file line number Diff line number Diff line change 32
32
#![ feature( test) ]
33
33
#![ feature( unicode) ]
34
34
#![ feature( hash) ]
35
- #![ allow( unstable) ]
36
35
// NOTE(stage0) remove cfg_attr after a snapshot
37
36
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
38
37
Original file line number Diff line number Diff line change 123
123
#![ feature( rand) ]
124
124
#![ feature( hash) ]
125
125
#![ cfg_attr( test, feature( test) ) ]
126
- #![ allow( unstable) ]
127
126
// NOTE(stage0): remove cfg_attr after a snapshot
128
127
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
129
128
Original file line number Diff line number Diff line change 39
39
#![ feature( rustc_private) ]
40
40
#![ feature( std_misc) ]
41
41
#![ feature( unicode) ]
42
- #![ allow( unstable) ]
43
42
// NOTE(stage0) remove cfg_attr after a snapshot
44
43
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
45
44
Original file line number Diff line number Diff line change 44
44
#![ feature( rustc_private) ]
45
45
#![ feature( std_misc) ]
46
46
#![ feature( hash) ]
47
- #![ allow( unstable) ]
48
47
// NOTE(stage0): remove cfg_attr after a snapshot
49
48
#![ cfg_attr( not( stage0) , allow( unused_mut) ) ]
50
49
Original file line number Diff line number Diff line change 10
10
11
11
fn changer < ' a > ( mut things : Box < Iterator < Item =& ' a mut u8 > > ) {
12
12
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
14
14
//~^^ ERROR
15
15
//~^^^ ERROR
16
16
// FIXME(#21528) error should be reported once, not thrice
Original file line number Diff line number Diff line change 11
11
#![ deny( unreachable_code) ]
12
12
#![ allow( unused_variables) ]
13
13
#![ allow( dead_code) ]
14
- #![ allow ( unstable ) ]
14
+ #![ feature ( core ) ]
15
15
16
16
fn fail_len ( v : Vec < isize > ) -> usize {
17
17
let mut i = 3 ;
You can’t perform that action at this time.
0 commit comments