Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
auxiliary
/
issue-107036.rs
blob: 5d11dd232185b57872fd28716d9f312ccd4eae58 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
pub
trait
T
{}
impl
T
for
()
{}
pub
struct
S
{}
impl
S
{
pub
async
fn
f
<
'a>(&self) -> impl T + '
a
{
()
}
}