Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
enum_field_value_duplicate_b.vv
5
lines
·
5
sloc
·
57 bytes
·
dc431a3c47e3c5fcc5cfb319dc601f6e809f4081
Raw
1
enum Color {
2
red // 0
3
green = -1
4
blue // -1 + 1 = 0
5
}
6