Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
closures
/
binder
/
async-closure-with-binder.rs
blob: 8f84f3074cd5341a5c425b8ad6a5f3d6c77ec47c [
file
] [
log
] [
blame
]
//@ edition:2021
//@ check-pass
#![
feature
(
closure_lifetime_binder
)]
fn
main
()
{
for
<
'
a
>
async
||
->
()
{};
}