]> git.lizzy.rs Git - rust.git/blob - tests/target/issue-5009/5_nested_for_loop_with_connector_in_if_elseif_else.rs
Fix static async closure qualifier order
[rust.git] / tests / target / issue-5009 / 5_nested_for_loop_with_connector_in_if_elseif_else.rs
1 fn main() {
2     let in_ = false;
3
4     for variable_in_x /* ... */ in 0..1 {
5         for variable_in_y /* ... */ in 0..1 {
6             if in_ {
7
8             } else if in_ {
9
10             } else {
11
12             }
13         }
14     }
15 }