enumcheck
enumcheck copied to clipboard
handle implicit conversion in struct definitions
type Letter byte // checkenum
type Alphabet { First Letter }
func main() {
fmt.Println(Alphabet{123})
}