You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
If this is an enum with explicit type conversion and never be referenced by other const, it will not be evaluated.
To Reproduce
For example:
type Class int
const (
CA Class = iota + 1
CB
)
type Kind int
const (
KA = Kind(1 + 2)
KB = Kind(CA + CB)
)
Expected behavior
KA, KB should be enums of type Kind
The text was updated successfully, but these errors were encountered:
sdghchj
changed the title
If this is an enum with explicite type conversion and never be referenced by other const, it will not be evaluated
If this is an enum with explicit type conversion and never be referenced by other const, it will not be evaluated
Apr 17, 2023
Describe the bug
If this is an enum with explicit type conversion and never be referenced by other const, it will not be evaluated.
To Reproduce
For example:
Expected behavior
KA, KB should be enums of type
Kind
The text was updated successfully, but these errors were encountered: