Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
for-loop-while
/
while-flow-graph.rs
blob: 9148b42a6061aeb68203bd5493958d0a23e9c6ca [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
pub
fn
main
()
{
let
x
:
isize
=
10
;
while
x
==
10
&&
x
==
11
{
let
_y
=
0xf00
_usize
;
}
}