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