1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/match_multi_else_branch_err.out
2023-06-22 22:39:35 +03:00

8 lines
229 B
Plaintext

vlib/v/parser/tests/match_multi_else_branch_err.vv:5:3: error: `match` can have only one `else` branch
3 | true { 1 }
4 | else { 3 }
5 | else { 5 }
| ~~~~
6 | }
7 | }