Allow unused code in tests
To avoid working around some code being unused in tests due to it being stubbed out with `#[cfg(test)]`.
This commit is contained in:
parent
9c05758ed4
commit
68aaa8d103
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@
|
|||
//!
|
||||
//! More documentation can be found in each respective module below, and you can
|
||||
//! also check out the `src/bootstrap/README.md` file for more information.
|
||||
#![cfg_attr(test, allow(unused))]
|
||||
|
||||
use std::cell::{Cell, RefCell};
|
||||
use std::collections::{BTreeSet, HashMap, HashSet};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue