aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/chalk_cast.rs
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2021-04-09 13:33:03 +0100
committerFlorian Diebold <[email protected]>2021-04-09 13:33:31 +0100
commit8a2c4820821a9b266ed979ed9321431362cdb1b3 (patch)
tree2cdda87caaacd9ad6df034a25192ece0b0faaf34 /crates/hir_ty/src/chalk_cast.rs
parent2f02977e56a44a5f78576a25547672cd8f910f13 (diff)
More cleanups
Diffstat (limited to 'crates/hir_ty/src/chalk_cast.rs')
-rw-r--r--crates/hir_ty/src/chalk_cast.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/crates/hir_ty/src/chalk_cast.rs b/crates/hir_ty/src/chalk_cast.rs
deleted file mode 100644
index f27dee3fd..000000000
--- a/crates/hir_ty/src/chalk_cast.rs
+++ /dev/null
@@ -1,16 +0,0 @@
1//! Implementations of the Chalk `Cast` trait for our types.
2
3use chalk_ir::interner::HasInterner;
4
5use crate::{CallableSig, ReturnTypeImplTraits};
6
7macro_rules! has_interner {
8 ($t:ty) => {
9 impl HasInterner for $t {
10 type Interner = crate::Interner;
11 }
12 };
13}
14
15has_interner!(CallableSig);
16has_interner!(ReturnTypeImplTraits);