aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/src/lib.rs
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2020-04-29 23:03:36 +0100
committerJonas Schievink <[email protected]>2020-04-29 23:10:30 +0100
commit3cb73da9499938e6f09736e4b6fba33474c3ce9c (patch)
tree690f793620fe3abf0583d2052979c9f3015929f9 /crates/ra_hir_ty/src/lib.rs
parent8c2670026a4c864a67a06bab654e203ed068f021 (diff)
Rename to associated_type_shorthand_candidates
Diffstat (limited to 'crates/ra_hir_ty/src/lib.rs')
-rw-r--r--crates/ra_hir_ty/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_hir_ty/src/lib.rs b/crates/ra_hir_ty/src/lib.rs
index 341a18683..a6f56c661 100644
--- a/crates/ra_hir_ty/src/lib.rs
+++ b/crates/ra_hir_ty/src/lib.rs
@@ -66,8 +66,8 @@ pub use autoderef::autoderef;
66pub use infer::{InferTy, InferenceResult}; 66pub use infer::{InferTy, InferenceResult};
67pub use lower::CallableDef; 67pub use lower::CallableDef;
68pub use lower::{ 68pub use lower::{
69 associated_types, callable_item_sig, ImplTraitLoweringMode, TyDefId, TyLoweringContext, 69 associated_type_shorthand_candidates, callable_item_sig, ImplTraitLoweringMode, TyDefId,
70 ValueTyDefId, 70 TyLoweringContext, ValueTyDefId,
71}; 71};
72pub use traits::{InEnvironment, Obligation, ProjectionPredicate, TraitEnvironment}; 72pub use traits::{InEnvironment, Obligation, ProjectionPredicate, TraitEnvironment};
73 73