mirror of
https://github.com/octoleo/syncthing.git
synced 2025-02-09 15:28:30 +00:00
9 lines
84 B
Go
9 lines
84 B
Go
package enumdeclall
|
|
|
|
type MyEnum int32
|
|
|
|
const (
|
|
A MyEnum = iota
|
|
B MyEnum = iota
|
|
)
|