Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
implied-bounds.rs
blob: 72ae0ce68a2fdadcd21ed5f565c3de15d4ce3de4 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition: 2021
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
()
{}