2022-12-04 10:22:20 +00:00
|
|
|
// check-pass
|
|
|
|
// edition: 2021
|
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
trait TcpStack {
|
|
|
|
type Connection<'a>: Sized where Self: 'a;
|
|
|
|
fn connect<'a>(&'a self) -> Self::Connection<'a>;
|
2023-09-26 20:20:25 +00:00
|
|
|
|
|
|
|
#[allow(async_fn_in_trait)]
|
2022-12-04 10:22:20 +00:00
|
|
|
async fn async_connect<'a>(&'a self) -> Self::Connection<'a>;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|