1 2 3 4 5 6 7 8 9
// check-pass #![feature(closure_lifetime_binder)] fn main() { let _ = for<'a> || -> () { let _: &'a bool = &true; }; }