14 lines
299 B
Rust
14 lines
299 B
Rust
//@ 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() {}
|