@@ -53,8 +53,6 @@ pub use diagnostic_impls::{
5353 DiagArgFromDisplay , DiagSymbolList , ElidedLifetimeInPathSubdiag , ExpectedLifetimeParameter ,
5454 IndicateAnonymousLifetime , SingleLabelManySpans ,
5555} ;
56- use rustc_lint_defs:: Lint ;
57- use rustc_hir:: HirId ;
5856pub use emitter:: ColorConfig ;
5957use emitter:: { DynEmitter , Emitter , is_case_difference, is_different} ;
6058use rustc_data_structures:: AtomicRef ;
@@ -66,8 +64,9 @@ pub use rustc_error_messages::{
6664 SubdiagMessage , fallback_fluent_bundle, fluent_bundle,
6765} ;
6866use rustc_hashes:: Hash128 ;
69- use rustc_lint_defs :: LintExpectationId ;
67+ use rustc_hir :: HirId ;
7068pub use rustc_lint_defs:: { Applicability , listify, pluralize} ;
69+ use rustc_lint_defs:: { Lint , LintExpectationId } ;
7170use rustc_macros:: { Decodable , Encodable } ;
7271pub use rustc_span:: ErrorGuaranteed ;
7372pub use rustc_span:: fatal_error:: { FatalError , FatalErrorMarker } ;
@@ -542,7 +541,7 @@ pub type HirDelayedLint = (
542541 & ' static Lint ,
543542 HirId ,
544543 Span ,
545- Box < dyn DynSend + for <' a , ' b > FnOnce ( & ' b mut Diag < ' a , ( ) > ) + ' static >
544+ Box < dyn DynSend + for <' a , ' b > FnOnce ( & ' b mut Diag < ' a , ( ) > ) + ' static > ,
546545) ;
547546
548547/// This inner struct exists to keep it all behind a single lock;
0 commit comments