summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5009/5_nested_for_loop_with_connector_in_if_elseif_else.rs
blob: 41ea46d4cb9b8fa9a108ff14262d22c2583dc9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    let in_ = false;

    for variable_in_x /* ... */ in 0..1 {
        for variable_in_y /* ... */ in 0..1 {
            if in_ {

            } else if in_ {

            } else {

            }
        }
    }
}