Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
async-await
/
async-fn-elided-impl-lifetime-parameter.rs
blob: 1c369fd7415db7be6063a69615d62ee8ff96b6c7 [
file
] [
log
] [
blame
]
// Check that `async fn` inside of an impl with `'_`
// in the header compiles correctly.
//
// Regression test for #63500.
//
// check-pass
// edition:2018
struct
Foo
<
'a>(&'
a u8
);
impl
Foo
<
'
_
>
{
async
fn
bar
()
{}
}
fn
main
()
{
}