From: Ian Jackson Date: Sun, 10 May 2026 18:20:19 +0000 (+0100) Subject: Suppress a lint for let _: Future = ... X-Git-Tag: debian/1.3.3~1^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=efc4049e69bec2b1fe085a96853a8d805c77823b;p=hippotat.git Suppress a lint for let _: Future = ... Signed-off-by: Ian Jackson --- 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 {