File tree Expand file tree Collapse file tree 22 files changed +0
-46
lines changed
rustc_data_structures/src Expand file tree Collapse file tree 22 files changed +0
-46
lines changed Original file line number Diff line number Diff line change 12
12
#![ feature( box_patterns) ]
13
13
#![ cfg_attr( bootstrap, feature( const_fn_unsize) ) ]
14
14
#![ feature( const_fn_transmute) ]
15
- #![ feature( const_panic) ]
16
15
#![ feature( crate_visibility_modifier) ]
17
16
#![ feature( iter_zip) ]
18
17
#![ feature( label_break_value) ]
19
18
#![ feature( nll) ]
20
19
#![ feature( min_specialization) ]
21
- #![ feature( trusted_step) ]
22
20
#![ recursion_limit = "256" ]
23
21
24
22
#[ macro_use]
Original file line number Diff line number Diff line change 6
6
7
7
#![ feature( bindings_after_at) ]
8
8
#![ feature( iter_is_partitioned) ]
9
- #![ feature( box_syntax) ]
10
9
#![ feature( box_patterns) ]
11
10
#![ recursion_limit = "256" ]
12
11
Original file line number Diff line number Diff line change 1
1
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
2
- #![ feature( assert_matches) ]
3
2
#![ feature( bool_to_option) ]
4
3
#![ feature( box_patterns) ]
5
- #![ feature( drain_filter) ]
6
4
#![ feature( try_blocks) ]
7
5
#![ feature( in_band_lifetimes) ]
8
6
#![ feature( nll) ]
9
7
#![ feature( associated_type_bounds) ]
10
- #![ feature( iter_zip) ]
11
8
#![ recursion_limit = "256" ]
12
- #![ feature( box_syntax) ]
13
9
14
10
//! This crate contains codegen code that is used by all codegen backends (LLVM and others).
15
11
//! The backend-agnostic functions of this crate use functions defined in various traits that
Original file line number Diff line number Diff line change 16
16
#![ feature( nll) ]
17
17
#![ feature( allow_internal_unstable) ]
18
18
#![ feature( hash_raw_entry) ]
19
- #![ feature( stmt_expr_attributes) ]
20
19
#![ feature( core_intrinsics) ]
21
20
#![ feature( test) ]
22
21
#![ feature( associated_type_bounds) ]
Original file line number Diff line number Diff line change 1
- #![ feature( bool_to_option) ]
2
1
#![ feature( crate_visibility_modifier) ]
3
2
#![ feature( decl_macro) ]
4
3
#![ feature( destructuring_assignment) ]
Original file line number Diff line number Diff line change 3
3
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/hir.html
4
4
5
5
#![ feature( crate_visibility_modifier) ]
6
- #![ feature( const_panic) ]
7
6
#![ cfg_attr( bootstrap, feature( extended_key_value_attributes) ) ]
8
7
#![ feature( in_band_lifetimes) ]
9
8
#![ feature( once_cell) ]
10
9
#![ feature( min_specialization) ]
11
- #![ feature( trusted_step) ]
12
10
#![ recursion_limit = "256" ]
13
11
14
12
#[ macro_use]
Original file line number Diff line number Diff line change 1
1
#![ feature( allow_internal_unstable) ]
2
2
#![ feature( bench_black_box) ]
3
- #![ feature( const_panic) ]
4
3
#![ feature( extend_one) ]
5
4
#![ feature( iter_zip) ]
6
5
#![ feature( unboxed_closures) ]
Original file line number Diff line number Diff line change 16
16
#![ feature( bool_to_option) ]
17
17
#![ feature( box_patterns) ]
18
18
#![ feature( box_syntax) ]
19
- #![ feature( const_panic) ]
20
19
#![ feature( extend_one) ]
21
20
#![ feature( iter_zip) ]
22
21
#![ feature( never_type) ]
23
22
#![ feature( in_band_lifetimes) ]
24
23
#![ feature( control_flow_enum) ]
25
24
#![ feature( min_specialization) ]
26
- #![ feature( trusted_step) ]
27
25
#![ recursion_limit = "512" ] // For rustdoc
28
26
29
27
#[ macro_use]
Original file line number Diff line number Diff line change 1
1
#![ feature( bool_to_option) ]
2
2
#![ feature( box_patterns) ]
3
- #![ feature( box_syntax) ]
4
3
#![ feature( internal_output_capture) ]
5
4
#![ feature( nll) ]
6
5
#![ feature( generator_trait) ]
Original file line number Diff line number Diff line change 36
36
#![ feature( iter_zip) ]
37
37
#![ feature( never_type) ]
38
38
#![ feature( nll) ]
39
- #![ feature( half_open_range_patterns) ]
40
- #![ feature( exclusive_range_pattern) ]
41
39
#![ feature( control_flow_enum) ]
42
40
#![ recursion_limit = "256" ]
43
41
You can’t perform that action at this time.
0 commit comments