File tree 11 files changed +11
-11
lines changed
rustc_trait_selection/src
11 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 15
15
#![ feature( box_patterns) ]
16
16
#![ feature( if_let_guard) ]
17
17
#![ feature( let_chains) ]
18
- #![ feature( min_specialization) ]
18
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
19
19
#![ feature( negative_impls) ]
20
20
#![ feature( stmt_expr_attributes) ]
21
21
Original file line number Diff line number Diff line change 7
7
#![ allow( internal_features) ]
8
8
#![ allow( rustc:: diagnostic_outside_of_impl) ]
9
9
#![ allow( rustc:: untranslatable_diagnostic) ]
10
+ #![ cfg_attr( bootstrap, feature( min_specialization) ) ]
10
11
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
11
12
#![ doc( rust_logo) ]
12
13
#![ feature( array_windows) ]
16
17
#![ feature( error_reporter) ]
17
18
#![ feature( extract_if) ]
18
19
#![ feature( let_chains) ]
19
- #![ feature( min_specialization) ]
20
20
#![ feature( negative_impls) ]
21
21
#![ feature( never_type) ]
22
22
#![ feature( rustc_attrs) ]
Original file line number Diff line number Diff line change 5
5
#![ feature( associated_type_defaults) ]
6
6
#![ feature( closure_track_caller) ]
7
7
#![ feature( let_chains) ]
8
- #![ feature( min_specialization) ]
8
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
9
9
#![ feature( never_type) ]
10
10
#![ feature( rustc_attrs) ]
11
11
#![ feature( variant_count) ]
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ This API is completely unstable and subject to change.
67
67
#![ feature( is_sorted) ]
68
68
#![ feature( iter_intersperse) ]
69
69
#![ feature( let_chains) ]
70
- #![ feature( min_specialization) ]
70
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
71
71
#![ feature( never_type) ]
72
72
#![ feature( lazy_cell) ]
73
73
#![ feature( slice_partition_dedup) ]
Original file line number Diff line number Diff line change 5
5
#![ feature( try_blocks) ]
6
6
#![ feature( never_type) ]
7
7
#![ feature( box_patterns) ]
8
- #![ feature( min_specialization) ]
8
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
9
9
#![ feature( control_flow_enum) ]
10
10
11
11
#[ macro_use]
Original file line number Diff line number Diff line change 24
24
#![ feature( let_chains) ]
25
25
#![ feature( if_let_guard) ]
26
26
#![ feature( iterator_try_collect) ]
27
- #![ feature( min_specialization) ]
27
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
28
28
#![ feature( try_blocks) ]
29
29
#![ recursion_limit = "512" ] // For rustdoc
30
30
Original file line number Diff line number Diff line change 9
9
#![ feature( box_patterns) ]
10
10
#![ feature( if_let_guard) ]
11
11
#![ feature( let_chains) ]
12
- #![ feature( min_specialization) ]
12
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
13
13
#![ feature( try_blocks) ]
14
14
15
15
#[ macro_use]
Original file line number Diff line number Diff line change 2
2
#![ feature( box_patterns) ]
3
3
#![ feature( exact_size_is_empty) ]
4
4
#![ feature( let_chains) ]
5
- #![ feature( min_specialization) ]
5
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
6
6
#![ feature( try_blocks) ]
7
7
8
8
#[ macro_use]
Original file line number Diff line number Diff line change 8
8
#![ feature( is_sorted) ]
9
9
#![ feature( let_chains) ]
10
10
#![ feature( map_try_insert) ]
11
- #![ feature( min_specialization) ]
11
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
12
12
#![ feature( never_type) ]
13
13
#![ feature( option_get_or_insert_default) ]
14
14
#![ feature( round_char_boundary) ]
Original file line number Diff line number Diff line change 14
14
#![ feature( exhaustive_patterns) ]
15
15
#![ feature( iter_intersperse) ]
16
16
#![ feature( let_chains) ]
17
- #![ feature( min_specialization) ]
17
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
18
18
#![ feature( rustc_attrs) ]
19
19
#![ feature( step_trait) ]
20
20
#![ allow( internal_features) ]
Original file line number Diff line number Diff line change 24
24
#![ feature( option_take_if) ]
25
25
#![ feature( never_type) ]
26
26
#![ feature( type_alias_impl_trait) ]
27
- #![ feature( min_specialization) ]
27
+ #![ cfg_attr ( bootstrap , feature( min_specialization) ) ]
28
28
#![ recursion_limit = "512" ] // For rustdoc
29
29
30
30
#[ macro_use]
You can’t perform that action at this time.
0 commit comments