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