Sign in
go
/
tools
/
0f72b2d23c2cc89f9843e6f9086a61e1ddc19c40
/
.
/
go
/
ssa
/
testdata
/
fixedbugs
/
issue73871.go
blob: a402bc047d597273bc5a9644f6277f80a117759a [
file
]
package issue73871
// Regression test for panic instantiating signature for a call append(x, y...).
func f[T ~[]byte](y T) {
_ = append([]byte(nil), y...)
}
func _() {
type B []byte
f(B(nil))
// must not panic
}