2022-12-04 04:22:20 -06:00
|
|
|
// check-pass
|
|
|
|
// edition: 2021
|
2023-03-07 15:26:02 -06:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-12-04 04:22:20 -06:00
|
|
|
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
trait TcpStack {
|
|
|
|
type Connection<'a>: Sized where Self: 'a;
|
|
|
|
fn connect<'a>(&'a self) -> Self::Connection<'a>;
|
|
|
|
async fn async_connect<'a>(&'a self) -> Self::Connection<'a>;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|