aboutsummaryrefslogtreecommitdiff
path: root/test/linkname.dir/linkname1.go
blob: c61a0d7d95ce09259d389d7d1220bd96476dc73b (plain)
1
2
3
4
5
6
7
8
9
10
package x

func indexByte(xs []byte, b byte) int { // ERROR "xs does not escape"
	for i, x := range xs {
		if x == b {
			return i
		}
	}
	return -1
}