package main func main() { a := []int32{1, 2} b := []int32{3, 4} c := append(a, b...) // ERROR: append spread not allowed _ = c }