mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +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
|
|
}
|