partially-typed-constant-group
Default severity: warning
In a constant group, an explicit type is inherited only when a later declaration omits its value. If every declaration has an explicit literal but only the first has a type, later constants silently use default built-in types and may lose methods or assignment compatibility.
const ( first Kind = 1; second = 2 )const ( first Kind = 1; second Kind = 2 )