DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / ui / closures / binder / late-bound-in-body.rs
123456789
// check-pass #![feature(closure_lifetime_binder)] fn main() { let _ = for<'a> || -> () { let _: &'a bool = &true; }; }