vlib/v/checker/tests/if_expr_last_stmt.vv:2:9: notice: condition is always true 1 | fn main() { 2 | _ = if true { | ~~~~ 3 | 1 4 | } else if false { vlib/v/checker/tests/if_expr_last_stmt.vv:4:12: notice: condition is always false 2 | _ = if true { 3 | 1 4 | } else if false { | ~~~~~ 5 | } else { 6 | } vlib/v/checker/tests/if_expr_last_stmt.vv:4:4: error: `if` expression requires an expression as the last statement of every branch 2 | _ = if true { 3 | 1 4 | } else if false { | ~~~~~~~~~~~~~ 5 | } else { 6 | } vlib/v/checker/tests/if_expr_last_stmt.vv:5:4: error: `if` expression requires an expression as the last statement of every branch 3 | 1 4 | } else if false { 5 | } else { | ~~~~ 6 | } 7 | }