diff options
author | Lukas Wirth <[email protected]> | 2021-04-06 11:36:12 +0100 |
---|---|---|
committer | Lukas Wirth <[email protected]> | 2021-04-06 12:58:48 +0100 |
commit | 9b4699a9be2c45ec96647c2079a32706ec65f222 (patch) | |
tree | 22a59fac0d60d102aae5e8f9266b161c17ff8696 /crates/hir_ty/src/method_resolution.rs | |
parent | 002e72a28de3df818992442ad49bb60d3d0b1d0b (diff) |
Move Ty accessors to TyExt
Diffstat (limited to 'crates/hir_ty/src/method_resolution.rs')
-rw-r--r-- | crates/hir_ty/src/method_resolution.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/method_resolution.rs b/crates/hir_ty/src/method_resolution.rs index 5042bfbca..ee725fd46 100644 --- a/crates/hir_ty/src/method_resolution.rs +++ b/crates/hir_ty/src/method_resolution.rs | |||
@@ -22,7 +22,7 @@ use crate::{ | |||
22 | static_lifetime, | 22 | static_lifetime, |
23 | utils::all_super_traits, | 23 | utils::all_super_traits, |
24 | AdtId, Canonical, CanonicalVarKinds, DebruijnIndex, FnPointer, FnSig, ForeignDefId, | 24 | AdtId, Canonical, CanonicalVarKinds, DebruijnIndex, FnPointer, FnSig, ForeignDefId, |
25 | InEnvironment, Interner, Scalar, Substitution, TraitEnvironment, Ty, TyBuilder, TyKind, | 25 | InEnvironment, Interner, Scalar, Substitution, TraitEnvironment, Ty, TyBuilder, TyExt, TyKind, |
26 | TypeWalk, | 26 | TypeWalk, |
27 | }; | 27 | }; |
28 | 28 | ||