Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
async-fn-path-elision.rs
blob: 7f2fb5a908a2a3f7440908a83143e50c93279397 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
struct
HasLifetime
<
'a>(&'
a bool
);
async
fn
error
(
lt
:
HasLifetime
)
{
//~ ERROR implicit elided lifetime not allowed here
if
*
lt
.
0
{}
}
fn
no_error
(
lt
:
HasLifetime
)
{
if
*
lt
.
0
{}
}
fn
main
()
{}