Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
torture
/
loop7.rs
blob: d758f8c2ca2dff0717fa6e520854bd6be7b1e3d7 [
file
] [
log
] [
blame
]
#![
feature
(
no_core
)]
#![
no_core
]
fn
main
()
{
let
mut
a
=
1
;
let
mut
b
=
1
;
let
_fib
=
loop
{
if
(
a
%
2
==
0
)
{
continue
;
}
let
c
=
a
+
b
;
a
=
b
;
b
=
c
;
};
}