Skip to content

Commit 581567a

Browse files
committed
Remove use via super
1 parent cb66bb8 commit 581567a

File tree

1 file changed

+1
-3
lines changed
  • crates/hir_ty/src/diagnostics

1 file changed

+1
-3
lines changed

crates/hir_ty/src/diagnostics/expr.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::{
1111
db::HirDatabase,
1212
diagnostics::{
1313
match_check::{is_useful, MatchCheckCtx, Matrix, PatStack, Usefulness},
14-
MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkInTailExpr, MissingPatFields,
14+
MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkInTailExpr, MissingPatFields, RemoveThisSemicolon
1515
},
1616
utils::variant_data,
1717
ApplicationTy, InferenceResult, Ty, TypeCtor,
@@ -23,8 +23,6 @@ pub(crate) use hir_def::{
2323
LocalFieldId, VariantId,
2424
};
2525

26-
use super::RemoveThisSemicolon;
27-
2826
pub(super) struct ExprValidator<'a, 'b: 'a> {
2927
owner: DefWithBodyId,
3028
infer: Arc<InferenceResult>,

0 commit comments

Comments
 (0)