Skip to content

Commit 93fd6fc

Browse files
authored
Rollup merge of rust-lang#111491 - compiler-errors:nested-fut-must-use, r=wesleywiser
Dont check `must_use` on nested `impl Future` from fn Fixes (but does not close, per beta policy) rust-lang#111484 Also fixes a `FIXME` left in the code about (presumably) false-positives on non-async `#[must_use] fn() -> impl Future` cases, though if that's not desirable to include in the beta backport then I can certainly revert it. Beta nominating as it fixes a beta ICE.
2 parents d83a4b0 + 926e874 commit 93fd6fc

File tree

5 files changed

+32
-14
lines changed

5 files changed

+32
-14
lines changed

compiler/rustc_lint/src/unused.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,10 @@ impl<'tcx> LateLintPass<'tcx> for UnusedResults {
103103
&& let ty = cx.typeck_results().expr_ty(&await_expr)
104104
&& let ty::Alias(ty::Opaque, ty::AliasTy { def_id: future_def_id, .. }) = ty.kind()
105105
&& cx.tcx.ty_is_opaque_future(ty)
106-
// FIXME: This also includes non-async fns that return `impl Future`.
107106
&& let async_fn_def_id = cx.tcx.parent(*future_def_id)
107+
&& matches!(cx.tcx.def_kind(async_fn_def_id), DefKind::Fn | DefKind::AssocFn)
108+
// Check that this `impl Future` actually comes from an `async fn`
109+
&& cx.tcx.asyncness(async_fn_def_id).is_async()
108110
&& check_must_use_def(
109111
cx,
110112
async_fn_def_id,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// edition:2021
2+
3+
use std::future::Future;
4+
5+
pub struct Manager;
6+
7+
impl Manager {
8+
#[must_use]
9+
pub async fn new() -> (Self, impl Future<Output = ()>) {
10+
(Manager, async {})
11+
}
12+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// edition:2021
2+
// aux-build:must-use-foreign.rs
3+
// check-pass
4+
5+
extern crate must_use_foreign;
6+
7+
use must_use_foreign::Manager;
8+
9+
async fn async_main() {
10+
Manager::new().await.1.await;
11+
}
12+
13+
fn main() {
14+
let _ = async_main();
15+
}

tests/ui/lint/unused/unused-async.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async fn test() {
3333
foo().await; //~ ERROR unused output of future returned by `foo` that must be used
3434
bar(); //~ ERROR unused return value of `bar` that must be used
3535
//~^ ERROR unused implementer of `Future` that must be used
36-
bar().await; //~ ERROR unused output of future returned by `bar` that must be used
36+
bar().await; // ok, it's not an async fn
3737
baz(); //~ ERROR unused implementer of `Future` that must be used
3838
baz().await; // ok
3939
}

tests/ui/lint/unused/unused-async.stderr

+1-12
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,6 @@ help: use `let _ = ...` to ignore the resulting value
5252
LL | let _ = bar();
5353
| +++++++
5454

55-
error: unused output of future returned by `bar` that must be used
56-
--> $DIR/unused-async.rs:36:5
57-
|
58-
LL | bar().await;
59-
| ^^^^^^^^^^^
60-
|
61-
help: use `let _ = ...` to ignore the resulting value
62-
|
63-
LL | let _ = bar().await;
64-
| +++++++
65-
6655
error: unused implementer of `Future` that must be used
6756
--> $DIR/unused-async.rs:37:5
6857
|
@@ -71,5 +60,5 @@ LL | baz();
7160
|
7261
= note: futures do nothing unless you `.await` or poll them
7362

74-
error: aborting due to 7 previous errors
63+
error: aborting due to 6 previous errors
7564

0 commit comments

Comments
 (0)