Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-78600.rs
blob: 1326546e930fe8e3415b559e78dae4227da1f862 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition:2018
struct
S
<
'a>(&'
a i32
);
impl
<
'a> S<'
a
>
{
async
fn
new
(
i
:
&
'
a i32
)
->
Result
<
Self
,
()>
{
Ok
(
S
(&
22
))
}
}
fn
main
()
{}