mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 23:31:37 +00:00
7 lines
145 B
Rust
7 lines
145 B
Rust
use std::mem;
|
|
|
|
fn main() {
|
|
let x: &'static u32 = unsafe { &mem::transmute(3.0f32) };
|
|
//~^ ERROR temporary value dropped while borrowed
|
|
}
|