Move coverage tests from run-make-fulldeps to run-make
This commit is contained in:
parent
48316dfea1
commit
866d5c621c
100 changed files with 4 additions and 4 deletions
25
src/test/run-make/coverage/nested_loops.rs
Normal file
25
src/test/run-make/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