mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 08:19:58 +00:00
7 lines
220 B
Rust
7 lines
220 B
Rust
#![feature(core_intrinsics)]
|
|
fn main() {
|
|
// Test that calls to intrinsics are never promoted
|
|
let x: &'static usize =
|
|
&std::intrinsics::size_of::<i32>(); //~ ERROR temporary value dropped while borrowed
|
|
}
|