about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2019-01-04 17:18:19 +0100
committerMatthias Krüger <matthias.krueger@famsik.de>2019-01-04 17:18:19 +0100
commit2b80829fe0311fc5cdbc731fa0b67f103db4c004 (patch)
treec75f5c301f6a914c9747552364cad3060f146808
parent194a91c45d5cbeadeb16afd75ce451753b230b81 (diff)
downloadrust-2b80829fe0311fc5cdbc731fa0b67f103db4c004.tar.gz
rust-2b80829fe0311fc5cdbc731fa0b67f103db4c004.zip
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
-rw-r--r--tests/run-pass/used_underscore_binding_macro.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/run-pass/used_underscore_binding_macro.rs b/tests/run-pass/used_underscore_binding_macro.rs
index 8b6c6557b49..e3af880524c 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;