当您看到这个错误时,这是因为代码没有尽可能的明确,这可能会使其他用户感到困惑。
示例:
type byte struct{} type string interface{}
byte 和 string 类型与内置类型别名冲突。 因此,这些将高亮显示。 考虑重命名此类声明。
byte
string