aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/lib.rs
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2021-04-08 13:35:15 +0100
committerFlorian Diebold <[email protected]>2021-04-08 13:36:14 +0100
commitd992736e796501b2a5ae232644924a3dfefede92 (patch)
tree5af343156b092f0e2a3cd0c26390428d1f1a3983 /crates/hir_ty/src/lib.rs
parent8040f4a5e3792f95b3194e21b3f6d375fb7499c5 (diff)
Remove unused
Diffstat (limited to 'crates/hir_ty/src/lib.rs')
-rw-r--r--crates/hir_ty/src/lib.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs
index f7af8b8aa..874c95411 100644
--- a/crates/hir_ty/src/lib.rs
+++ b/crates/hir_ty/src/lib.rs
@@ -1,8 +1,6 @@
1//! The type system. We currently use this to infer types for completion, hover 1//! The type system. We currently use this to infer types for completion, hover
2//! information and various assists. 2//! information and various assists.
3 3
4#![allow(unused)]
5
6#[allow(unused)] 4#[allow(unused)]
7macro_rules! eprintln { 5macro_rules! eprintln {
8 ($($tt:tt)*) => { stdx::eprintln!($($tt)*) }; 6 ($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
@@ -34,7 +32,6 @@ use std::sync::Arc;
34 32
35use base_db::salsa; 33use base_db::salsa;
36use chalk_ir::{ 34use chalk_ir::{
37 cast::{CastTo, Caster},
38 fold::{Fold, Shift}, 35 fold::{Fold, Shift},
39 interner::HasInterner, 36 interner::HasInterner,
40 UintTy, 37 UintTy,