blob: 60077a7e00cc8b8f6098eed0f3cd690bdec02428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// edition: 2021
#![allow(incomplete_features)]
trait MyTrait {
async fn foo(&self) -> i32;
}
impl MyTrait for i32 {
fn foo(&self) -> i32 {
//~^ ERROR: method `foo` should be async
*self
}
}
fn main() {}
|