summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5009/4_nested_for_loop_with_if_elseif_else.rs
blob: a716d0d3082a5f8505921eda406312792c1d1bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    for variable_in_x /* ... */ in 0..1 {
        for variable_in_y /* ... */ in 0..1 {
            if false {

            } else if false {

            } else {

            }
        }
    }
}