Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
enum_field_value_duplicate_e.out
8
lines
·
8
sloc
·
296 bytes
·
364cf7c47c6883c4f591c56cc56e7360a4cfed23
Raw
1
vlib/v/checker/tests/enum_field_value_duplicate_e.vv:4:6: error: enum value `2` already exists
2
2 | a = one
3
3 | b
4
4 | c = one
5
| ~~~
6
5 | }
7
6 |
8
Details: use `@[_allow_multiple_values]` attribute to allow multiple enum values. Use only when it is needed
9