mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 19:33:16 +00:00
19 lines
307 B
Rust
19 lines
307 B
Rust
//@ edition:2021
|
|
|
|
|
|
trait MyTrait {
|
|
async fn foo<'a>(&self);
|
|
async fn bar(&self);
|
|
}
|
|
|
|
impl MyTrait for i32 {
|
|
async fn foo(&self) {}
|
|
//~^ ERROR lifetime parameters or bounds on method `foo` do not match the trait declaration
|
|
|
|
async fn bar(&self) {
|
|
self.foo();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|