blob: cd95bdcb56cd12673e97b6602240c82ad0557897 [file] [log] [blame]
package enumdecl
type MyEnum int32
const (
A MyEnum = iota
B MyEnum = iota
)