blob: 0af1e8a66b3172e0ef79aebe05a7ad47e94b846c [file] [log] [blame]
//@ 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() {}