]> git.lizzy.rs Git - rust.git/blob - src/test/run-make/coverage/while.rs
Rollup merge of #106173 - compiler-errors:deduplicate-op-methods, r=jackh726
[rust.git] / src / test / run-make / coverage / while.rs
1 fn main() {
2     let num = 9;
3     while num >= 10 {
4     }
5 }