rust/tests/ui/async-await/in-trait/async-recursive.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
566 B
Plaintext
Raw Normal View History

2023-11-08 07:19:01 +00:00
error[E0733]: recursion in an async fn requires boxing
--> $DIR/async-recursive.rs:8:5
|
LL | async fn foo_recursive(&self, n: usize) -> i32 {
2023-11-08 07:19:01 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | self.foo_recursive(n - 1).await
| ------------------------------- recursive call here
|
2023-11-08 07:19:01 +00:00
= note: a recursive `async fn` call must introduce indirection such as `Box::pin` to avoid an infinitely sized future
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0733`.