os-rust/src/test/ui/consts/promote_const_let.rs

8 lines
139 B
Rust
Raw Normal View History

#![feature(const_let)]
fn main() {
let x: &'static u32 = {
let y = 42;
&y //~ ERROR does not live long enough
};
}