rust/tests/ui/async-await/in-trait/implied-bounds.rs
Michael Goulet 28d58f6524 Bless tests
2023-10-03 00:37:18 +00:00

16 lines
328 B
Rust

// check-pass
// edition: 2021
#![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>;
#[allow(async_fn_in_trait)]
async fn async_connect<'a>(&'a self) -> Self::Connection<'a>;
}
fn main() {}