File tree Expand file tree Collapse file tree 11 files changed +10
-13
lines changed
allow-warnings-cmdline-stability Expand file tree Collapse file tree 11 files changed +10
-13
lines changed Original file line number Diff line number Diff line change 74
74
#![ needs_allocator]
75
75
#![ deny( missing_debug_implementations) ]
76
76
77
- #![ cfg_attr( test, allow ( deprecated ) ) ] // rand
77
+ #![ cfg_attr( not ( test) , feature ( fn_traits ) ) ]
78
78
#![ cfg_attr( not( test) , feature( generator_trait) ) ]
79
- #![ cfg_attr( test, feature( rand, test) ) ]
79
+ #![ cfg_attr( test, feature( test) ) ]
80
+
80
81
#![ feature( allocator_api) ]
81
82
#![ feature( allow_internal_unstable) ]
82
83
#![ feature( arbitrary_self_types) ]
117
118
#![ feature( rustc_const_unstable) ]
118
119
#![ feature( const_vec_new) ]
119
120
120
- #![ cfg_attr( not( test) , feature( fn_traits) ) ]
121
- #![ cfg_attr( test, feature( test) ) ]
122
-
123
121
// Allow testing this library
124
122
125
123
#[ cfg( test) ]
Original file line number Diff line number Diff line change 17
17
#![ feature( exact_size_is_empty) ]
18
18
#![ feature( pattern) ]
19
19
#![ feature( slice_sort_by_cached_key) ]
20
- #![ feature( splice) ]
21
20
#![ feature( str_escape) ]
22
- #![ feature( string_retain) ]
23
21
#![ feature( try_reserve) ]
24
22
#![ feature( unboxed_closures) ]
25
23
#![ feature( exact_chunks) ]
Original file line number Diff line number Diff line change 26
26
#![ feature( refcell_map_split) ]
27
27
#![ feature( refcell_replace_swap) ]
28
28
#![ feature( slice_patterns) ]
29
- #![ feature( slice_rotate) ]
30
29
#![ feature( sort_internals) ]
31
30
#![ feature( specialization) ]
32
31
#![ feature( step_trait) ]
Original file line number Diff line number Diff line change 232
232
233
233
// std is implemented with unstable features, many of which are internal
234
234
// compiler details that will never be stable
235
+ #![ cfg_attr( test, feature( test, update_panic_count) ) ]
235
236
#![ feature( alloc) ]
236
237
#![ feature( alloc_error_handler) ]
237
238
#![ feature( alloc_system) ]
302
303
#![ feature( doc_cfg) ]
303
304
#![ feature( doc_masked) ]
304
305
#![ feature( doc_spotlight) ]
305
- #![ cfg_attr( test, feature( update_panic_count) ) ]
306
306
#![ cfg_attr( windows, feature( used) ) ]
307
307
#![ feature( doc_alias) ]
308
308
#![ feature( doc_keyword) ]
Original file line number Diff line number Diff line change 12
12
#![ feature( staged_api) ]
13
13
#![ unstable( feature = "unstable_test_feature" , issue = "0" ) ]
14
14
15
- pub fn baz ( ) { }
15
+ pub fn baz ( ) { }
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #![ feature( test_feature ) ]
11
+ #![ feature( unstable_test_feature ) ]
12
12
13
13
extern crate bar;
14
14
Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- #![ feature( libc, exit_status ) ]
11
+ #![ feature( libc) ]
12
12
13
13
extern crate libc;
14
14
Original file line number Diff line number Diff line change 13
13
// no-prefer-dynamic
14
14
// ignore-cloudabi no processes
15
15
// ignore-emscripten no processes
16
+ // ignore-macos
16
17
17
18
extern crate exit_success_if_unwind;
18
19
Original file line number Diff line number Diff line change 12
12
// no-prefer-dynamic
13
13
// ignore-cloudabi no processes
14
14
// ignore-emscripten no processes
15
+ // ignore-macos
15
16
16
17
use std:: process:: Command ;
17
18
use std:: env;
Original file line number Diff line number Diff line change 10
10
11
11
// compile-flags:-C panic=abort
12
12
// no-prefer-dynamic
13
+ // ignore-macos
13
14
14
15
#![ feature( panic_abort) ]
15
16
You can’t perform that action at this time.
0 commit comments