mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 00:47:18 +00:00
Cleanup imports
This commit is contained in:
parent
9fa46ff5c6
commit
d6e8f27488
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ use std::sync::Arc;
|
|||
use hir_def::{
|
||||
builtin_type::BuiltinType,
|
||||
generics::WherePredicate,
|
||||
path::{GenericArg, PathSegment},
|
||||
path::{GenericArg, Path, PathSegment},
|
||||
resolver::{HasResolver, Resolver, TypeNs},
|
||||
type_ref::{TypeBound, TypeRef},
|
||||
AdtId, AstItemDef, ConstId, EnumId, EnumVariantId, FunctionId, GenericDefId, HasModule,
|
||||
|
@ -31,7 +31,7 @@ use crate::{
|
|||
utils::{all_super_traits, associated_type_by_name_including_super_traits, variant_data},
|
||||
},
|
||||
util::make_mut_slice,
|
||||
Adt, Const, Enum, EnumVariant, Function, ImplBlock, ModuleDef, Path, Static, Struct, Trait,
|
||||
Adt, Const, Enum, EnumVariant, Function, ImplBlock, ModuleDef, Static, Struct, Trait,
|
||||
TypeAlias, Union,
|
||||
};
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
//! FIXME: write short doc here
|
||||
use hir_def::expr::{BinaryOp, CmpOp};
|
||||
|
||||
use super::{InferTy, Ty, TypeCtor};
|
||||
use crate::{
|
||||
expr::{BinaryOp, CmpOp},
|
||||
ty::ApplicationTy,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue