v/vlib/v/parser/tests/match_range_dotdot_err.vv

7 lines
71 B
V

fn test_match() {
match 5 {
0..10 { '0-9' }
else { 'other' }
}
}