mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
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
|
||
|
|
}
|