11 lines
161 B
Go
11 lines
161 B
Go
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
|
|
}
|