diff options
author | Florian Diebold <[email protected]> | 2021-04-03 16:42:13 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2021-04-08 13:08:55 +0100 |
commit | 926bfef0efc5caca2a04a50beaba9127338e21e0 (patch) | |
tree | 8dc7eb6c67af235731329b280b783214104430d3 /crates/hir_ty/src | |
parent | e5d294765ae224ad59c6cd55442088fd3e604708 (diff) |
Allow unused
Diffstat (limited to 'crates/hir_ty/src')
-rw-r--r-- | crates/hir_ty/src/lib.rs | 3 |
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)] |
4 | macro_rules! eprintln { | 7 | macro_rules! eprintln { |
5 | ($($tt:tt)*) => { stdx::eprintln!($($tt)*) }; | 8 | ($($tt:tt)*) => { stdx::eprintln!($($tt)*) }; |