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_range_dotdot_err.out

8 lines
273 B
Plaintext

vlib/v/parser/tests/match_range_dotdot_err.vv:3:4: error: match only supports inclusive (`...`) ranges, not exclusive (`..`)
1 | fn test_match() {
2 | match 5 {
3 | 0..10 { '0-9' }
| ~~
4 | else { 'other' }
5 | }