mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 20:28:33 +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
|
||
|
}
|