Skip to content

Commit d355ec9

Browse files
committed
Fix imports.
I'm not really sure why this is nessecary to do, but the checks on the PR do not seem to work if do not do this.
1 parent a9f1b7b commit d355ec9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_lint/src/let_underscore.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::{LateContext, LateLintPass, LintContext};
2-
use rustc_errors::{Applicability, MultiSpan};
2+
use rustc_errors::{Applicability, LintDiagnosticBuilder, MultiSpan};
33
use rustc_hir as hir;
4-
use rustc_middle::{lint::LintDiagnosticBuilder, ty};
4+
use rustc_middle::ty;
55
use rustc_span::Symbol;
66

77
declare_lint! {

0 commit comments

Comments
 (0)