]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-5009/4_nested_for_loop_with_if_elseif_else.rs
Merge commit 'd822110d3b5625b9dc80ccc442e06fc3cc851d76' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / issue-5009 / 4_nested_for_loop_with_if_elseif_else.rs
1 fn main() {
2     for variable_in_x /* ... */ in 0..1 {
3         for variable_in_y /* ... */ in 0..1 {
4             if false {
5
6             } else if false {
7
8             } else {
9
10             }
11         }
12     }
13 }