From efc4049e69bec2b1fe085a96853a8d805c77823b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2026 19:20:19 +0100 Subject: [PATCH] Suppress a lint for let _: Future = ... Signed-off-by: Ian Jackson --- client/client.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/client.rs b/client/client.rs index 994bbb1..72a59c4 100644 --- a/client/client.rs +++ b/client/client.rs @@ -339,6 +339,8 @@ async fn run_client( { // This future was Ready and has returned the value, // which is in `got`. We don't want the completed future. + // rust-lang/rust-clippy#16991 + #[allow(clippy::let_underscore_future)] let _: Pin>> = reqs.swap_remove(goti); if let Some(got) = got { -- 2.30.2