File tree 1 file changed +7
-6
lines changed
compiler/rustc_resolve/src
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 6
6
//!
7
7
//! Type-relative name resolution (methods, fields, associated items) happens in `rustc_hir_analysis`.
8
8
9
+ // tidy-alphabetical-start
10
+ #![ allow( internal_features) ]
11
+ #![ allow( rustc:: diagnostic_outside_of_impl) ]
12
+ #![ allow( rustc:: potential_query_instability) ]
13
+ #![ allow( rustc:: untranslatable_diagnostic) ]
9
14
#![ doc( html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/" ) ]
10
15
#![ doc( rust_logo) ]
11
- #![ feature( rustdoc_internals) ]
12
16
#![ feature( assert_matches) ]
13
17
#![ feature( box_patterns) ]
14
18
#![ feature( extract_if) ]
15
19
#![ feature( if_let_guard) ]
16
20
#![ feature( iter_intersperse) ]
17
21
#![ feature( let_chains) ]
18
22
#![ feature( rustc_attrs) ]
19
- #![ allow( rustdoc:: private_intra_doc_links) ]
20
- #![ allow( rustc:: diagnostic_outside_of_impl) ]
21
- #![ allow( rustc:: potential_query_instability) ]
22
- #![ allow( rustc:: untranslatable_diagnostic) ]
23
- #![ allow( internal_features) ]
23
+ #![ feature( rustdoc_internals) ]
24
+ // tidy-alphabetical-end
24
25
25
26
#[ macro_use]
26
27
extern crate tracing;
You can’t perform that action at this time.
0 commit comments