rust/tests/ui/async-await/in-trait/lifetime-mismatch.rs

22 lines
429 B
Rust
Raw Normal View History

// edition:2021
2023-03-17 10:37:27 -05:00
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
// revisions: current next
#![feature(async_fn_in_trait)]
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() {}