about summary refs log tree commit diff
path: root/tests/ui/closures/binder/nested-closures.rs
blob: 072d615cfa9b25c7751cff13a986a641e5006561 (plain)
1
2
3
4
5
6
7
//@ check-pass

#![feature(closure_lifetime_binder)]

fn main() {
    for<'a> || -> () { for<'c> |_: &'a ()| -> () {}; };
}