aboutsummaryrefslogtreecommitdiffstats
path: root/test/oldescape_linkname.dir/linkname1.go
blob: 9c61522fcc91851fa7714c92822117dfa60503f6 (plain)
1
2
3
4
5
6
7
8
9
10
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
}