From 05ba3eb01dc05ac369ae91c307c4f9acd4512bb0 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Wed, 18 Nov 2020 10:11:39 +0100 Subject: [PATCH] WIP: Don't deny warnings --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7f46a102..fca8e45d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ // Needs a nightly feature, doesn't bring that much to the table // FIXME: Apply Clippy lint once or-patterns are stabilized (rust-lang/rust#54883) #![allow(clippy::unnested_or_patterns)] -#![deny(warnings)] +// #![deny(warnings)] extern crate rustc_hir; extern crate rustc_infer;