12 lines
214 B
Go

//golangcitest:args -Eprealloc
package testdata
func Prealloc(source []int) []int {
var dest []int // want "Consider pre-allocating `dest`"
for _, v := range source {
dest = append(dest, v)
}
return dest
}