From 08e1e67b490253deed9b91761d95fe80a2f48cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20BRANSTETT?= Date: Wed, 23 Feb 2022 18:22:28 +0100 Subject: [PATCH] Remove invalid #[cfg(tests)] in index_map --- compiler/rustc_data_structures/src/sorted_map/index_map.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/rustc_data_structures/src/sorted_map/index_map.rs b/compiler/rustc_data_structures/src/sorted_map/index_map.rs index 593316e2699..0ec32dc4307 100644 --- a/compiler/rustc_data_structures/src/sorted_map/index_map.rs +++ b/compiler/rustc_data_structures/src/sorted_map/index_map.rs @@ -152,6 +152,3 @@ impl std::ops::Index for SortedIndexMultiMap { &self.items[idx].1 } } - -#[cfg(tests)] -mod tests;