summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/closure_promotion.rs
blob: db36985afe7a8ff0caf303a1bdb0277ea1e58317 (plain)
1
2
3
4
5
6
7
// build-pass (FIXME(62277): could be check-pass?)

#![allow(const_err)]

fn main() {
    let x: &'static _ = &|| { let z = 3; z };
}