File tree 1 file changed +8
-6
lines changed
compiler/rustc_errors/src
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 2
2
//!
3
3
//! This module contains the code for creating and emitting diagnostics.
4
4
5
+ // tidy-alphabetical-start
6
+ #![ allow( incomplete_features) ]
7
+ #![ allow( internal_features) ]
5
8
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
6
9
#![ doc( rust_logo) ]
7
- #![ feature( rustdoc_internals) ]
8
10
#![ feature( array_windows) ]
9
11
#![ feature( associated_type_defaults) ]
10
12
#![ feature( box_into_inner) ]
13
+ #![ feature( box_patterns) ]
14
+ #![ feature( error_reporter) ]
11
15
#![ feature( extract_if) ]
12
16
#![ feature( if_let_guard) ]
13
17
#![ feature( let_chains) ]
14
18
#![ feature( negative_impls) ]
15
19
#![ feature( never_type) ]
16
20
#![ feature( rustc_attrs) ]
17
- #![ feature( yeet_expr ) ]
21
+ #![ feature( rustdoc_internals ) ]
18
22
#![ feature( try_blocks) ]
19
- #![ feature( box_patterns) ]
20
- #![ feature( error_reporter) ]
21
- #![ allow( incomplete_features) ]
22
- #![ allow( internal_features) ]
23
+ #![ feature( yeet_expr) ]
24
+ // tidy-alphabetical-end
23
25
24
26
#[ macro_use]
25
27
extern crate rustc_macros;
You can’t perform that action at this time.
0 commit comments