2022-10-04 01:27:11 +00:00
|
|
|
// edition: 2021
|
2023-09-13 16:04:42 +00:00
|
|
|
// check-pass
|
2022-10-04 01:27:11 +00:00
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
use std::future::Future;
|
|
|
|
|
|
|
|
trait MyTrait {
|
|
|
|
async fn foo(&self) -> i32;
|
|
|
|
}
|
2022-10-04 23:35:49 +00:00
|
|
|
|
2022-10-04 01:27:11 +00:00
|
|
|
impl MyTrait for i32 {
|
|
|
|
fn foo(&self) -> impl Future<Output = i32> {
|
2022-11-02 17:45:08 -07:00
|
|
|
async { *self }
|
2022-10-04 01:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|