mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
Remove use via super
This commit is contained in:
parent
cb66bb8ff9
commit
581567a4c8
1 changed files with 1 additions and 3 deletions
|
@ -11,7 +11,7 @@ use crate::{
|
|||
db::HirDatabase,
|
||||
diagnostics::{
|
||||
match_check::{is_useful, MatchCheckCtx, Matrix, PatStack, Usefulness},
|
||||
MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkInTailExpr, MissingPatFields,
|
||||
MismatchedArgCount, MissingFields, MissingMatchArms, MissingOkInTailExpr, MissingPatFields, RemoveThisSemicolon
|
||||
},
|
||||
utils::variant_data,
|
||||
ApplicationTy, InferenceResult, Ty, TypeCtor,
|
||||
|
@ -23,8 +23,6 @@ pub(crate) use hir_def::{
|
|||
LocalFieldId, VariantId,
|
||||
};
|
||||
|
||||
use super::RemoveThisSemicolon;
|
||||
|
||||
pub(super) struct ExprValidator<'a, 'b: 'a> {
|
||||
owner: DefWithBodyId,
|
||||
infer: Arc<InferenceResult>,
|
||||
|
|
Loading…
Reference in a new issue