Sign in
go
/
go
/
87ffba35dd06da731406b989433115e9571f00f0
/
.
/
src
/
cmd
/
vet
/
testdata
/
copylock
/
copylock.go
blob: 8079cf3248b785afbcf7b1097e509047e48c0a56 [
file
] [
log
] [
blame
]
package copylock
import "sync"
func BadFunc() {
var x *sync.Mutex
p := x
var y sync.Mutex
p = &y
*p = *x
// ERROR "assignment copies lock value to \*p: sync.Mutex"
}