about summary refs log tree commit diff
path: root/src/test/ui/closure_promotion.rs
blob: db9c0a6ef3be49e6935403e7b1f344b4629c54ed (plain)
1
2
3
4
5
6
7
// compile-pass

#![allow(const_err)]

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