v/vlib/v/checker/tests/match_expr_and_expected_typ...

12 lines
83 B
V

ch := `a`
match ch {
'a' {}
else {}
}
i := 123
match i {
'a' {}
else {}
}