You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #117703 - compiler-errors:recursive-async, r=<try>
Support async recursive calls (as long as they have indirection)
TL;DR: This code should work
```
async fn foo() {
Box::pin(foo()).await;
}
```
r? `@ghost` while I write up a description, etc.
struct_span_err!(tcx.sess, span,E0733,"recursion in an `async fn` requires boxing")
1329
-
.span_label(span,"recursive `async fn`")
1330
-
.note("a recursive `async fn` must be rewritten to return a boxed `dyn Future`")
1331
-
.note(
1332
-
"consider using the `async_recursion` crate: https://crates.io/crates/async_recursion",
1333
-
)
1334
-
.emit()
1335
-
}
1336
-
1337
1326
/// Emit an error for recursive opaque types.
1338
1327
///
1339
1328
/// If this is a return `impl Trait`, find the item's return expressions and point at them. For
0 commit comments