Sign in
go
/
go
/
9774fa6f4020dba924d63991f572aa89325e1c9c
/
.
/
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
}