Ignore unreadable_literal lint in test code

This commit is contained in:
David Tolnay 2019-07-16 09:04:43 -07:00
parent 85ae57040d
commit 5f72766c27
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#![allow(clippy::decimal_literal_representation)]
#![allow(clippy::decimal_literal_representation, clippy::unreadable_literal)]
#![cfg_attr(feature = "unstable", feature(never_type))]
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};

View File

@ -1,3 +1,4 @@
#![allow(clippy::unreadable_literal)]
#![cfg_attr(feature = "unstable", feature(never_type))]
use std::cell::RefCell;