v/vlib/v/checker/tests/enum_field_name_duplicate_e...

11 lines
84 B
V

enum Color {
green
yellow
blue
green
}
fn main(){
println('hello')
}