rust/tests/ui/async-await/in-trait/early-bound-2.rs
Michael Goulet 28d58f6524 Bless tests
2023-10-03 00:37:18 +00:00

17 lines
251 B
Rust

// check-pass
// edition:2021
#![feature(async_fn_in_trait)]
#![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() {}