unplugged-vendor/prebuilts/go/linux-x86/test/oldescape_linkname.dir/linkname2.go

14 lines
276 B
Go
Raw Permalink Normal View History

package y
import _ "unsafe"
//go:linkname byteIndex linkname1.indexByte
func byteIndex(xs []byte, b byte) int
func ContainsSlash(data []byte) bool { // ERROR "leaking param: data" "can inline ContainsSlash"
if byteIndex(data, '/') != -1 {
return true
}
return false
}