Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
conditional.rs
blob: 4a5af8c9cfead36bae247f0f115e4b3fff2518e5 [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
main
()
{
let
mut
x
=
5
;
if
x
==
5
{
x
=
1
;
}
else
if
x
==
3
{
x
=
2
;
}
else
{
x
=
3
;
}
}