aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/ty.rs
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2019-06-16 11:04:08 +0100
committerFlorian Diebold <[email protected]>2019-06-16 11:25:04 +0100
commit96c2b9c41d85a8bd781e2b734cac1224eb7c4694 (patch)
treee5fbaaf48220d6480e9bed817a6b33346cbe82ce /crates/ra_hir/src/ty.rs
parent30647cd195e29c77fd1248d49c750346ca5022ca (diff)
Simplifications / cleanup from review
Diffstat (limited to 'crates/ra_hir/src/ty.rs')
-rw-r--r--crates/ra_hir/src/ty.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_hir/src/ty.rs b/crates/ra_hir/src/ty.rs
index 4ed19f860..842d49e1f 100644
--- a/crates/ra_hir/src/ty.rs
+++ b/crates/ra_hir/src/ty.rs
@@ -23,6 +23,7 @@ pub(crate) use lower::{TypableDef, type_for_def, type_for_field, callable_item_s
23pub(crate) use infer::{infer_query, InferenceResult, InferTy}; 23pub(crate) use infer::{infer_query, InferenceResult, InferTy};
24pub use lower::CallableDef; 24pub use lower::CallableDef;
25pub(crate) use autoderef::autoderef; 25pub(crate) use autoderef::autoderef;
26pub(crate) use traits::ProjectionPredicate;
26 27
27/// A type constructor or type name: this might be something like the primitive 28/// A type constructor or type name: this might be something like the primitive
28/// type `bool`, a struct like `Vec`, or things like function pointers or 29/// type `bool`, a struct like `Vec`, or things like function pointers or