aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_ty/src/lib.rs
diff options
context:
space:
mode:
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,