about summary refs log tree commit diff
path: root/tests/ui/closures/binder/async-closure-with-binder.rs
blob: 8f84f3074cd5341a5c425b8ad6a5f3d6c77ec47c (plain)
1
2
3
4
5
6
7
8
//@ edition:2021
//@ check-pass

#![feature(closure_lifetime_binder)]

fn main() {
    for<'a> async || -> () {};
}