mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
1f9353ae2c
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.
8 lines
165 B
Plaintext
8 lines
165 B
Plaintext
LL| 1|fn main() {
|
|
LL| 1| let num = 9;
|
|
LL| 1| while num >= 10 {
|
|
LL| 0| // loop body
|
|
LL| 0| }
|
|
LL| 1|}
|
|
|