Work around unused_imports rustdoc bug

This commit is contained in:
David Tolnay
2018-06-26 23:48:37 -07:00
parent 02493d83be
commit cc9d85b293
+4 -1
View File
@@ -127,7 +127,10 @@
use_debug,
))]
// Blacklisted Rust lints.
#![deny(missing_docs, unused_imports)]
//
// Compiler bug involving unused_imports:
// https://github.com/rust-lang/rust/issues/51661
#![deny(missing_docs, /*unused_imports*/)]
////////////////////////////////////////////////////////////////////////////////