File tree Expand file tree Collapse file tree 7 files changed +4
-7
lines changed Expand file tree Collapse file tree 7 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: a3b13610c5b93d9ada072471a001a5613df6a960
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
- refs/heads/tmp: 253992eb38569f7f80cc59537013b3d9d58aede6
37
+ refs/heads/tmp: c5c3de0cf4efba1517009ee6ef2da66f03b490b9
38
38
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
39
39
refs/tags/homu-tmp: 28a0b25f424090255966273994748a9f9901059f
40
40
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412
Original file line number Diff line number Diff line change 36
36
#![ feature( collections) ]
37
37
#![ feature( core) ]
38
38
#![ feature( old_fs) ]
39
- #![ feature( hash) ]
40
39
#![ feature( int_uint) ]
41
40
#![ feature( io) ]
42
41
#![ feature( old_io) ]
Original file line number Diff line number Diff line change 40
40
#![ feature( unicode) ]
41
41
#![ feature( path_ext) ]
42
42
#![ feature( fs) ]
43
- #![ feature( hash) ]
44
43
#![ feature( convert) ]
45
44
#![ feature( path_relative_from) ]
46
45
Original file line number Diff line number Diff line change @@ -834,7 +834,7 @@ mod tests {
834
834
fn split_paths_windows ( ) {
835
835
fn check_parse ( unparsed : & str , parsed : & [ & str ] ) -> bool {
836
836
split_paths ( unparsed) . collect :: < Vec < _ > > ( ) ==
837
- parsed. iter ( ) . map ( |s| PathBuf :: new ( * s) ) . collect :: < Vec < _ > > ( )
837
+ parsed. iter ( ) . map ( |s| PathBuf :: from ( * s) ) . collect :: < Vec < _ > > ( )
838
838
}
839
839
840
840
assert ! ( check_parse( "" , & mut [ "" ] ) ) ;
Original file line number Diff line number Diff line change 111
111
#![ feature( box_syntax) ]
112
112
#![ feature( collections) ]
113
113
#![ feature( core) ]
114
- #![ feature( hash) ]
115
114
#![ feature( lang_items) ]
116
115
#![ feature( libc) ]
117
116
#![ feature( linkage, thread_local, asm) ]
124
123
#![ feature( unsafe_destructor) ]
125
124
#![ feature( unsafe_no_drop_flag) ]
126
125
#![ feature( macro_reexport) ]
127
- #![ feature( hash) ]
128
126
#![ feature( int_uint) ]
129
127
#![ feature( unique) ]
130
128
#![ feature( convert) ]
Original file line number Diff line number Diff line change 126
126
// lldb-command:continue
127
127
128
128
#![ allow( unused_variables) ]
129
+ #![ feature( old_io) ]
129
130
#![ omit_gdb_pretty_printer_section]
130
131
131
132
fn immediate_args ( a : int , b : bool , c : f64 ) {
Original file line number Diff line number Diff line change 15
15
//ignore-dragonfly
16
16
//ignore-bitrig
17
17
18
- #![ feature( asm) ]
18
+ #![ feature( asm, old_io ) ]
19
19
20
20
use std:: old_io:: process:: Command ;
21
21
use std:: env;
You can’t perform that action at this time.
0 commit comments