9 lines
168 B
Rust
9 lines
168 B
Rust
|
#![feature(const_transmute)]
|
||
|
|
||
|
use std::mem;
|
||
|
|
||
|
fn main() {
|
||
|
let x: &'static u32 = unsafe { &mem::transmute(3.0f32) };
|
||
|
//~^ ERROR value does not live long enough
|
||
|
}
|