rust/tests/ui/async-await/in-trait/early-bound-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
218 B
Rust
Raw Normal View History

// check-pass
// edition:2021
pub trait Foo {
2023-09-26 15:20:25 -05:00
#[allow(async_fn_in_trait)]
async fn foo(&mut self);
}
struct MyFoo<'a>(&'a mut ());
impl<'a> Foo for MyFoo<'a> {
async fn foo(&mut self) {}
}
fn main() {}