github.com/dara-project/godist@v0.0.0-20200823115410-e0c80c8f0c78/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 }