aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2021-04-03 16:42:13 +0100
committerFlorian Diebold <[email protected]>2021-04-08 13:08:55 +0100
commit926bfef0efc5caca2a04a50beaba9127338e21e0 (patch)
tree8dc7eb6c67af235731329b280b783214104430d3 /crates
parente5d294765ae224ad59c6cd55442088fd3e604708 (diff)
Allow unused
Diffstat (limited to 'crates')
-rw-r--r--crates/hir_ty/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/hir_ty/src/lib.rs b/crates/hir_ty/src/lib.rs
index 3378015ca..5fa8b3296 100644
--- a/crates/hir_ty/src/lib.rs
+++ b/crates/hir_ty/src/lib.rs
@@ -1,5 +1,8 @@
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
4#![allow(unused)]
5
3#[allow(unused)] 6#[allow(unused)]
4macro_rules! eprintln { 7macro_rules! eprintln {
5 ($($tt:tt)*) => { stdx::eprintln!($($tt)*) }; 8 ($($tt:tt)*) => { stdx::eprintln!($($tt)*) };