Initial commit: Go 1.23 release state
This commit is contained in:
13
test/linkname.dir/linkname2.go
Normal file
13
test/linkname.dir/linkname2.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package y
|
||||
|
||||
import _ "unsafe"
|
||||
|
||||
//go:linkname byteIndex test/linkname1.indexByte
|
||||
func byteIndex(xs []byte, b byte) int // ERROR "leaking param: xs"
|
||||
|
||||
func ContainsSlash(data []byte) bool { // ERROR "leaking param: data" "can inline ContainsSlash"
|
||||
if byteIndex(data, '/') != -1 {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user