Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
closures
/
binder
/
async-closure-with-binder.rs
blob: 24f4e8e4175a64d985a9d365cbfa48fc391889d3 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
//@ check-pass
#![
feature
(
closure_lifetime_binder
)]
#![
feature
(
async_closure
)]
fn
main
()
{
for
<
'
a
>
async
||
->
()
{};
}