mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 08:05:12 +00:00
16 lines
387 B
Rust
16 lines
387 B
Rust
// check-pass
|
|
// edition: 2021
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
// revisions: current next
|
|
|
|
#![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() {}
|