rust/tests/coverage/while.rs
Zalathar 1f9353ae2c coverage: Tweak individual tests to be unaffected by rustfmt
Some of these tests use non-standard formatting that we can simulate by
strategically adding `//` line comments.

One contains `where` clauses that would be split across multiple lines, which
we can keep on one line by moving the bounds to the generic type instead.
2024-01-16 16:14:27 +11:00

7 lines
80 B
Rust

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