Allow unused

This commit is contained in:
Florian Diebold 2021-04-03 17:42:13 +02:00
parent e5d294765a
commit 926bfef0ef

View file

@ -1,5 +1,8 @@
//! The type system. We currently use this to infer types for completion, hover
//! information and various assists.
#![allow(unused)]
#[allow(unused)]
macro_rules! eprintln {
($($tt:tt)*) => { stdx::eprintln!($($tt)*) };