]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/coverage/while.rs
Auto merge of #98457 - japaric:gh98378, r=m-ou-se
[rust.git] / src / test / run-make / coverage / while.rs
1 fn main() {
2     let num = 9;
3     while num >= 10 {
4     }
5 }