blob: 0af1e8a66b3172e0ef79aebe05a7ad47e94b846c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | //@ edition: 2021
//@ check-pass
use std::future::Future;
trait MyTrait {
    async fn foo(&self) -> i32;
}
impl MyTrait for i32 {
    fn foo(&self) -> impl Future<Output = i32> {
        async { *self }
    }
}
fn main() {}
 |