summary refs log tree commit diff
path: root/src/test/ui/closure_promotion.rs
blob: a80745e8bcc186426124084663df5d92338fcea5 (plain)
1
2
3
4
5
6
7
8
// ignore-compare-mode-nll

#![allow(const_err)]

// nll successfully compiles this.
fn main() {
    let x: &'static _ = &|| { let z = 3; z }; //~ ERROR does not live long enough
}