Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
async-await
/
async-fn-path-elision.rs
blob: 3f1f51c20ca0c3ce20d54462018398c918a2b393 [
file
] [
log
] [
blame
]
// 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
()
{}