From ce6ef38477bdfd83cdd5c47b32da0d774f1cb6b4 Mon Sep 17 00:00:00 2001 From: Ayaz Hafiz Date: Wed, 11 May 2022 17:22:05 -0400 Subject: [PATCH] Clippy --- compiler/load_internal/src/file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/load_internal/src/file.rs b/compiler/load_internal/src/file.rs index fbe1b7d9c0..09fd5d8945 100644 --- a/compiler/load_internal/src/file.rs +++ b/compiler/load_internal/src/file.rs @@ -447,7 +447,7 @@ fn start_phase<'a>( // ability specializations our dependencies have. But we also need to know what // ability specializations our dependents have, because those might be used by the // specializations we've been asked to make. - for (module_id, exposed_types) in state.exposed_types.iter_all() { + for (_module_id, exposed_types) in state.exposed_types.iter_all() { if let ExposedModuleTypes::Valid { solved_specializations, ..