blob: a67f7fd182c5e766aa2e011738c4283f05dca7b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ edition: 2021
trait MyTrait {
async fn foo(&self) -> i32;
}
impl MyTrait for i32 {
fn foo(&self) -> i32 {
//~^ ERROR: method should be `async` or return a future, but it is synchronous
*self
}
}
fn main() {}
|