]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/in-trait/async-recursive.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / in-trait / async-recursive.stderr
CommitLineData
2b03887a
FG
1error[E0733]: recursion in an `async fn` requires boxing
2 --> $DIR/async-recursive.rs:11:48
3 |
4LL | async fn foo_recursive(&self, n: usize) -> i32 {
5 | ^^^ recursive `async fn`
6 |
7 = note: a recursive `async fn` must be rewritten to return a boxed `dyn Future`
8 = note: consider using the `async_recursion` crate: https://crates.io/crates/async_recursion
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0733`.