aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/if_expr_last_stmt.vv
blob: eb5dd0c71d5c44c8eafdaa0547ef2e22fe282c2c (plain)
1
2
3
4
5
6
7
fn main() {
    _ = if true {
        1
    } else if false {
    } else {
    }
}