summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/while.rs
blob: 781b90b35663ec50bc6ae8189f329f333f39ca00 (plain)
1
2
3
4
5
fn main() {
    let num = 9;
    while num >= 10 {
    }
}