aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/match_else_last_expr.out
blob: c3331f18ed74c2e0a7c2a93d563324d4917af62b (plain)
1
2
3
4
5
6
7
vlib/v/checker/tests/match_else_last_expr.vv:4:3: error: `else` must be the last branch of `match`
    2 |     match 1 {
    3 |         1 { println('1') }
    4 |         else { println('else') }
      |         ~~~~
    5 |         4 { println('4') }
    6 |     }