2022-10-03 20:27:11 -05:00
|
|
|
// edition: 2021
|
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
trait MyTrait {
|
|
|
|
async fn foo(&self) -> i32;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MyTrait for i32 {
|
|
|
|
fn foo(&self) -> i32 {
|
2022-11-02 19:45:08 -05:00
|
|
|
//~^ ERROR: method `foo` should be async
|
2022-10-03 20:27:11 -05:00
|
|
|
*self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|