1
Fork 0

Move coverage tests from run-make-fulldeps to run-make

This commit is contained in:
Tomasz Miąsko 2022-07-25 00:00:00 +00:00
parent 48316dfea1
commit 866d5c621c
100 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,25 @@
fn main() {
let is_true = std::env::args().len() == 1;
let mut countdown = 10;
'outer: while countdown > 0 {
let mut a = 100;
let mut b = 100;
for _ in 0..50 {
if a < 30 {
break;
}
a -= 5;
b -= 5;
if b < 90 {
a -= 10;
if is_true {
break 'outer;
} else {
a -= 2;
}
}
}
countdown -= 1;
}
}