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

#![allow(incomplete_features)]

trait TcpStack {
    type Connection<'a>: Sized where Self: 'a;
    fn connect<'a>(&'a self) -> Self::Connection<'a>;

    #[allow(async_fn_in_trait)]
    async fn async_connect<'a>(&'a self) -> Self::Connection<'a>;
}

fn main() {}