v/vlib/v/checker/tests/enum_err.vv

12 lines
100 B
V

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