Sign in
go
/
go
/
1f3c0eefd29c70a69f79b8a0bb98b9c71effe5ee
/
.
/
test
/
linkname.dir
/
linkname1.go
blob: 9c61522fcc91851fa7714c92822117dfa60503f6 [
file
]
package x
func indexByte(xs []byte, b byte) int {
// ERROR "indexByte xs does not escape"
for i, x := range xs {
if x == b {
return i
}
}
return -1
}