summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/early-bound-2.rs
blob: 270443229b05416db70cb8c38f37cd7cd0d2f8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// check-pass
// edition:2021

#![feature(async_fn_in_trait)]
#![allow(incomplete_features)]

pub trait Foo {
    async fn foo(&mut self);
}

impl<T: Foo> Foo for &mut T {
    async fn foo(&mut self) {}
}

fn main() {}