#![warn(clippy::unused_async)] use std::future::Future; use std::pin::Pin; mod issue10800 { #![allow(dead_code, unused_must_use, clippy::no_effect)] use std::future::ready; async fn async_block_await() { async { ready(()).await; }; } async fn normal_block_await() { { { ready(()).await; } } } } async fn foo() -> i32 { 4 } async fn bar() -> i32 { foo().await } struct S; impl S { async fn unused(&self) -> i32 { 1 } async fn used(&self) -> i32 { self.unused().await } } trait AsyncTrait { fn trait_method() -> Pin>>; } macro_rules! async_trait_impl { () => { impl AsyncTrait for S { fn trait_method() -> Pin>> { async fn unused() -> i32 { 5 } Box::pin(unused()) } } }; } async_trait_impl!(); fn main() { foo(); bar(); }