summary refs log tree commit diff
path: root/tests/ui/inline-const/elided-lifetime-being-infer-vars.rs
blob: a1c3c61484ae6960859d0b75460e64809bf1e696 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass

#![feature(inline_const)]

fn main() {
    let _my_usize = const {
        let a = 10_usize;
        let b: &'_ usize = &a;
        *b
    };
}