




						
<html>
<title>I Want To Break Free</title>
<link rel="shortcut icon" type="image/png" href="https://fast.com/assets/favicons/favicon-32x32.png">
<body style="background-color:powderblue;">
    
package x

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