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