mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 19:33:16 +00:00
18 lines
261 B
Rust
18 lines
261 B
Rust
//@ check-pass
|
|
//@ edition: 2021
|
|
|
|
use std::future::Future;
|
|
|
|
trait MyTrait {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn foo(&self) -> i32;
|
|
}
|
|
|
|
impl MyTrait for i32 {
|
|
fn foo(&self) -> impl Future<Output = i32> {
|
|
async { *self }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|