mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 06:03:16 +00:00
16 lines
218 B
Rust
16 lines
218 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
pub trait Foo {
|
|
#[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() {}
|