Sign in
go
/
tools
/
bf70295789942e4b20ca70a8cd2fe1f3ca2a70bd
/
.
/
gopls
/
internal
/
analysis
/
modernize
/
testdata
/
src
/
appendclipped
/
bytesclone.go
blob: 6425211b924659876656ee591d7c355665f4ca1f [
file
]
package appendclipped
import (
"bytes"
)
var _ bytes.Buffer
func _(b []byte) {
print(append([]byte{}, b...))
// want "Replace append with bytes.Clone"
}