]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/binder/nested-closures-regions.rs
Move /src/test to /tests
[rust.git] / tests / ui / closures / binder / nested-closures-regions.rs
1 // check-pass
2
3 #![feature(closure_lifetime_binder)]
4 #![feature(rustc_attrs)]
5
6 #[rustc_regions]
7 fn main() {
8     for<'a> || -> () { for<'c> |_: &'a ()| -> () {}; };
9 }