vxx2 / vlib / v / checker / tests / enum_field_value_duplicate_f.out
7 lines · 7 sloc · 293 bytes · 9ad14757cb6dd20e98c22a89c566467498947a95
Raw
1vlib/v/checker/tests/enum_field_value_duplicate_f.vv:6:8: error: enum value `2` already exists
2 4 | enum Foo {
3 5 | foo = x
4 6 | bar = y
5 | ^
6 7 | }
7Details: use `@[_allow_multiple_values]` attribute to allow multiple enum values. Use only when it is needed
8