about summary refs log tree commit diff
path: root/tests/ui/closures/binder/late-bound-in-body.rs
blob: 335fd75d99b78c8d5d821351a0dfdb3e7de87052 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

#![feature(closure_lifetime_binder)]

fn main() {
    let _ = for<'a> || -> () {
        let _: &'a bool = &true;
    };
}