models.go 81 B

12345678
  1. package enumdecl
  2. type MyEnum int32
  3. const (
  4. A MyEnum = iota
  5. B MyEnum = iota
  6. )