From 2b80829fe0311fc5cdbc731fa0b67f103db4c004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Fri, 4 Jan 2019 17:18:19 +0100 Subject: [PATCH] tests: used_underscore_binding_macro: disable random_state lint. Trying to work around a crash (see https://github.com/rust-lang/rust-clippy/issues/3628) in https://github.com/rust-lang/rust/pull/57303 --- tests/run-pass/used_underscore_binding_macro.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/run-pass/used_underscore_binding_macro.rs b/tests/run-pass/used_underscore_binding_macro.rs index 8b6c6557b494..e3af880524cd 100644 --- a/tests/run-pass/used_underscore_binding_macro.rs +++ b/tests/run-pass/used_underscore_binding_macro.rs @@ -8,6 +8,7 @@ // except according to those terms. #![allow(clippy::useless_attribute)] //issue #2910 +#![allow(clippy::random_state)] // issue #3628 #[macro_use] extern crate serde_derive;