File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed
compiler/rustc_serialize/src Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change 1
1
//! Support code for encoding and decoding types.
2
2
3
- /*
4
- Core encoding and decoding interfaces.
5
- */
6
-
7
3
#![ doc(
8
4
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ,
9
5
html_playground_url = "https://play.rust-lang.org/" ,
10
6
test( attr( allow( unused_variables) , deny( warnings) ) )
11
7
) ]
12
- #![ feature( never_type ) ]
8
+ #![ feature( allocator_api ) ]
13
9
#![ feature( associated_type_bounds) ]
14
- #![ feature( min_specialization ) ]
10
+ #![ feature( const_option ) ]
15
11
#![ feature( core_intrinsics) ]
16
- #![ feature( maybe_uninit_slice ) ]
17
- #![ feature( new_uninit ) ]
18
- #![ feature( allocator_api ) ]
12
+ #![ feature( inline_const ) ]
13
+ #![ feature( min_specialization ) ]
14
+ #![ feature( never_type ) ]
19
15
#![ feature( ptr_sub_ptr) ]
20
16
#![ feature( slice_first_last_chunk) ]
21
- #![ feature( inline_const) ]
22
- #![ feature( const_option) ]
23
17
#![ cfg_attr( test, feature( test) ) ]
24
18
#![ allow( rustc:: internal) ]
25
19
#![ deny( rustc:: untranslatable_diagnostic) ]
You can’t perform that action at this time.
0 commit comments