mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-23 23:37:00 +00:00
9 lines
81 B
Go
9 lines
81 B
Go
package enumdecl
|
|
|
|
type MyEnum int32
|
|
|
|
const (
|
|
A MyEnum = iota
|
|
B MyEnum = iota
|
|
)
|