Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
consts
/
const-eval
/
const-eval-intrinsic-promotion.rs
blob: bdcf537859cc40d08364c1c3d4a2065e7f828315 [
file
] [
log
] [
blame
]
#![
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
}