coverage: Migrate tests/run-coverage
into tests/coverage
This commit is contained in:
parent
aea7c27eae
commit
e9d04c5e24
105 changed files with 7 additions and 9 deletions
25
tests/coverage/nested_loops.rs
Normal file
25
tests/coverage/nested_loops.rs
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue