mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 21:53:56 +00:00
16 lines
220 B
Rust
16 lines
220 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait Foo {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn foo(&mut self);
|
|
}
|
|
|
|
impl<T: Foo> Foo for &mut T {
|
|
async fn foo(&mut self) {}
|
|
}
|
|
|
|
fn main() {}
|