rust/tests/run-coverage/while.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
59 B
Rust
Raw Normal View History

fn main() {
let num = 9;
while num >= 10 {
}
}