Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-int-sign.rs
blob: c3111ddf56ca23b8460c96bbfed20dfce483326b [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
:
&
'
static
bool
=
&(
5
_i32
.
is_negative
());
//~^ ERROR temporary value dropped while borrowed
let
y
:
&
'
static
bool
=
&(
5
_i32
.
is_positive
());
//~^ ERROR temporary value dropped while borrowed
}