github.com/tidwall/go@v0.0.0-20170415222209-6694a6888b7d/test/linkname.dir/linkname1.go (about) 1 package x 2 3 func indexByte(xs []byte, b byte) int { // ERROR "indexByte xs does not escape" 4 for i, x := range xs { 5 if x == b { 6 return i 7 } 8 } 9 return -1 10 }