/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue15988.go
14 строк
252 B
Keith Randall
cmd/compile: cgen_append can handle complex targets
08 июн 2016, 03:01
08 июн 2016, 03:01
afad74e
Код
Авторство
О чём код?
// compile // Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package p func f(p, q []int) { p = append(q, 5) sink = &p } var sink *[]int