remove forward pointer for type_ref

This commit is contained in:
Aleksey Kladov 2019-10-30 17:28:30 +03:00
parent e564334320
commit e5300ad3ba
14 changed files with 27 additions and 24 deletions

View file

@ -39,7 +39,6 @@ mod nameres;
mod adt;
mod traits;
mod type_alias;
mod type_ref;
mod ty;
mod attr;
mod impl_block;
@ -75,7 +74,6 @@ pub use crate::{
ty::{
display::HirDisplay, ApplicationTy, CallableDef, Substs, TraitRef, Ty, TypeCtor, TypeWalk,
},
type_ref::Mutability,
};
pub use self::code_model::{
@ -89,4 +87,5 @@ pub use self::code_model::{
pub use hir_def::{
name::Name,
path::{Path, PathKind},
type_ref::Mutability,
};