diff options
| author | bors <bors@rust-lang.org> | 2023-12-10 11:55:48 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-12-10 11:55:48 +0000 |
| commit | 84f6130fe37b7c18e93ad6b3220ade5aadc571da (patch) | |
| tree | 4c476dab272678f0cbf3a0624e40a1d168b4257c /compiler/rustc_data_structures/src/graph/implementation | |
| parent | c1a39193788d3f9cea80c4e3179ea56b8e1f5046 (diff) | |
| parent | 40ae34194c586eea3614d3216322053d2e8e7b37 (diff) | |
| download | rust-84f6130fe37b7c18e93ad6b3220ade5aadc571da.tar.gz rust-84f6130fe37b7c18e93ad6b3220ade5aadc571da.zip | |
Auto merge of #118692 - surechen:remove_unused_imports, r=petrochenkov
remove redundant imports detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR. r? `@petrochenkov`
Diffstat (limited to 'compiler/rustc_data_structures/src/graph/implementation')
| -rw-r--r-- | compiler/rustc_data_structures/src/graph/implementation/tests.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/graph/implementation/tests.rs b/compiler/rustc_data_structures/src/graph/implementation/tests.rs index dc1ce1747bf..3ae5f5868f0 100644 --- a/compiler/rustc_data_structures/src/graph/implementation/tests.rs +++ b/compiler/rustc_data_structures/src/graph/implementation/tests.rs @@ -1,5 +1,4 @@ use crate::graph::implementation::*; -use std::fmt::Debug; type TestGraph = Graph<&'static str, &'static str>; |
