1
Fork 0

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:
Jakub Beránek 2025-03-19 14:40:38 +01:00
parent 9c05758ed4
commit 68aaa8d103

View file

@ -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};