2022-10-04 01:27:11 +00:00
|
|
|
// edition: 2021
|
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
#![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> {
|
2023-02-22 01:10:52 +00:00
|
|
|
//~^ ERROR `impl Trait` only allowed in function and inherent method return types, not in `impl` method return types
|
2022-11-02 17:45:08 -07:00
|
|
|
async { *self }
|
2022-10-04 01:27:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|