v2 / vlib / v / parser / tests / match_range_dotdot_err.vv
6 lines · 6 sloc · 71 bytes · 3583302ad4af52bd4171c9be3e552daeda622468
Raw
1fn test_match() {
2 match 5 {
3 0..10 { '0-9' }
4 else { 'other' }
5 }
6}
7