下面的代码有什么问题?
func main() { fmt.Println([...]int{1} == [2]int{1}) fmt.Println([]int{1} == []int{1}) }
参考答案及解析:有两处错误
[...]int{1}
[2]int{1}
`单行代码`