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

12 lines
109 B
V

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