v/vlib/v/checker/tests/match_expr_range_low_higher...

9 lines
69 B
V

fn main() {
value := 10
match value {
20...10 {}
else {}
}
}