Sign in
android
/
platform
/
prebuilts
/
go
/
linux-x86
/
67845c40aa5be5001fb20ef6f6b8d52e3fe6bb1c
/
.
/
test
/
linkname.dir
/
linkname1.go
blob: 9c61522fcc91851fa7714c92822117dfa60503f6 [
file
] [
log
] [
blame
]
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
}