Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
flag_enum_exhaustive_else_branch.out
7
lines
·
7
sloc
·
263 bytes
·
be53b02511bc82b6f0677f83dc28f236e6845276
Raw
1
vlib/v/checker/tests/flag_enum_exhaustive_else_branch.vv:11:1: error: match must be exhaustive (add `else {}` at the end)
2
9 | dump(perm)
3
10 |
4
11 | match perm {
5
| ~~~~~~~~~~~~
6
12 | .read { println('r') }
7
13 | .write { println('w') }
8