下面这段代码能否通过编译,如果可以,输出什么?
func main() { s1 := []int{1, 2, 3} s2 := []int{4, 5} s1 = append(s1, s2) fmt.Println(s1) }