]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/coverage/while.rs
Move coverage tests from run-make-fulldeps to run-make
[rust.git] / src / test / run-make / coverage / while.rs
1 fn main() {
2     let num = 9;
3     while num >= 10 {
4     }
5 }