File tree 8 files changed +22
-0
lines changed
8 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 26
26
#![ feature( bool_to_option) ]
27
27
#![ feature( box_patterns) ]
28
28
#![ feature( box_syntax) ]
29
+ #![ feature( const_if_match) ]
30
+ #![ feature( const_fn) ]
31
+ #![ feature( const_panic) ]
29
32
#![ feature( const_transmute) ]
30
33
#![ feature( core_intrinsics) ]
31
34
#![ feature( drain_filter) ]
Original file line number Diff line number Diff line change 7
7
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" , test( attr( deny( warnings) ) ) ) ]
8
8
#![ feature( bool_to_option) ]
9
9
#![ feature( box_syntax) ]
10
+ #![ feature( const_if_match) ]
10
11
#![ feature( const_fn) ] // For the `transmute` in `P::new`
12
+ #![ feature( const_panic) ]
11
13
#![ feature( const_transmute) ]
12
14
#![ feature( crate_visibility_modifier) ]
13
15
#![ feature( label_break_value) ]
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_if_match) ]
6
7
#![ feature( const_fn) ] // For the unsizing cast on `&[]`
8
+ #![ feature( const_panic) ]
7
9
#![ feature( in_band_lifetimes) ]
8
10
#![ feature( specialization) ]
9
11
#![ recursion_limit = "256" ]
Original file line number Diff line number Diff line change 1
1
#![ feature( allow_internal_unstable) ]
2
+ #![ feature( const_if_match) ]
3
+ #![ feature( const_fn) ]
4
+ #![ feature( const_panic) ]
2
5
#![ feature( unboxed_closures) ]
3
6
#![ feature( test) ]
4
7
#![ feature( fn_traits) ]
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ Rust MIR: a lowered representation of Rust.
9
9
#![ feature( bool_to_option) ]
10
10
#![ feature( box_patterns) ]
11
11
#![ feature( box_syntax) ]
12
+ #![ feature( const_if_match) ]
13
+ #![ feature( const_fn) ]
14
+ #![ feature( const_panic) ]
12
15
#![ feature( crate_visibility_modifier) ]
13
16
#![ feature( drain_filter) ]
14
17
#![ feature( exhaustive_patterns) ]
Original file line number Diff line number Diff line change 4
4
5
5
#![ feature( box_patterns) ]
6
6
#![ feature( box_syntax) ]
7
+ #![ feature( const_if_match) ]
8
+ #![ feature( const_fn) ]
9
+ #![ feature( const_panic) ]
7
10
#![ feature( crate_visibility_modifier) ]
8
11
#![ feature( bool_to_option) ]
9
12
#![ recursion_limit = "256" ]
Original file line number Diff line number Diff line change 6
6
7
7
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
8
8
#![ feature( crate_visibility_modifier) ]
9
+ #![ feature( const_if_match) ]
10
+ #![ feature( const_fn) ]
11
+ #![ feature( const_panic) ]
9
12
#![ feature( nll) ]
10
13
#![ feature( optin_builtin_traits) ]
11
14
#![ feature( specialization) ]
Original file line number Diff line number Diff line change 9
9
10
10
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/" ) ]
11
11
#![ feature( bool_to_option) ]
12
+ #![ feature( const_if_match) ]
13
+ #![ feature( const_fn) ]
14
+ #![ feature( const_panic) ]
12
15
#![ feature( nll) ]
13
16
#![ feature( never_type) ]
14
17
#![ feature( associated_type_bounds) ]
You can’t perform that action at this time.
0 commit comments