mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 10:57:35 +00:00
19 lines
355 B
Rust
19 lines
355 B
Rust
// edition: 2021
|
|
|
|
trait MyTrait {
|
|
async fn foo_recursive(&self, n: usize) -> i32;
|
|
}
|
|
|
|
impl MyTrait for i32 {
|
|
async fn foo_recursive(&self, n: usize) -> i32 {
|
|
//~^ ERROR recursion in an async fn requires boxing
|
|
if n > 0 {
|
|
self.foo_recursive(n - 1).await
|
|
} else {
|
|
*self
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|