Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
consts
/
const_short_circuit.rs
blob: 6403fbb17dd58ded8f5781992effcee065ba970a [
file
] [
log
] [
blame
]
// check-pass
const
_
:
bool
=
false
&&
false
;
const
_
:
bool
=
true
&&
false
;
const
_
:
bool
=
{
let
mut
x
=
true
&&
false
;
x
};
const
_
:
bool
=
{
let
x
=
true
&&
false
;
x
};
fn
main
()
{}