Dont check must_use on nested impl Future from fn

This commit is contained in:
Michael Goulet 2023-05-12 02:08:39 +00:00
parent 2a8221dbdf
commit 926e874fd1
5 changed files with 32 additions and 14 deletions

View File

@ -103,8 +103,10 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
&& let ty = cx.typeck_results().expr_ty(&await_expr)
&& let ty::Alias(ty::Opaque, ty::AliasTy { def_id: future_def_id, .. }) = ty.kind()
&& cx.tcx.ty_is_opaque_future(ty)
// FIXME: This also includes non-async fns that return `impl Future`.
&& let async_fn_def_id = cx.tcx.parent(*future_def_id)
&& matches!(cx.tcx.def_kind(async_fn_def_id), DefKind::Fn | DefKind::AssocFn)
// Check that this `impl Future` actually comes from an `async fn`
&& cx.tcx.asyncness(async_fn_def_id).is_async()
&& check_must_use_def(
cx,
async_fn_def_id,

View File

@ -0,0 +1,12 @@
// edition:2021
use std::future::Future;
pub struct Manager;
impl Manager {
#[must_use]
pub async fn new() -> (Self, impl Future<Output = ()>) {
(Manager, async {})
}
}

View File

@ -0,0 +1,15 @@
// edition:2021
// aux-build:must-use-foreign.rs
// check-pass
extern crate must_use_foreign;
use must_use_foreign::Manager;
async fn async_main() {
Manager::new().await.1.await;
}
fn main() {
let _ = async_main();
}

View File

@ -33,7 +33,7 @@ async fn test() {
foo().await; //~ ERROR unused output of future returned by `foo` that must be used
bar(); //~ ERROR unused return value of `bar` that must be used
//~^ ERROR unused implementer of `Future` that must be used
bar().await; //~ ERROR unused output of future returned by `bar` that must be used
bar().await; // ok, it's not an async fn
baz(); //~ ERROR unused implementer of `Future` that must be used
baz().await; // ok
}

View File

@ -52,17 +52,6 @@ help: use `let _ = ...` to ignore the resulting value
LL | let _ = bar();
| +++++++
error: unused output of future returned by `bar` that must be used
--> $DIR/unused-async.rs:36:5
|
LL | bar().await;
| ^^^^^^^^^^^
|
help: use `let _ = ...` to ignore the resulting value
|
LL | let _ = bar().await;
| +++++++
error: unused implementer of `Future` that must be used
--> $DIR/unused-async.rs:37:5
|
@ -71,5 +60,5 @@ LL | baz();
|
= note: futures do nothing unless you `.await` or poll them
error: aborting due to 7 previous errors
error: aborting due to 6 previous errors