proteus icon indicating copy to clipboard operation
proteus copied to clipboard

Review if enums are being marked to conversion when used in a field.

Open Serabe opened this issue 8 years ago • 0 comments

Review if the following code generates the enum:

type Role int8

const (
	SimpleIdentifier Role = iota
	QualifiedIdentifier
)

//proteus:generate
type Node struct {
	Role Role
}

Serabe avatar Mar 07 '17 10:03 Serabe