We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
copylock check must emit a warning on copying sync.Mutex or struct containing sync.Mutex. It doesn't detect the following cases:
sync.Mutex
var a sync.Mutex b := a // doesn't detect var c = a // doesn't detect b = a // detects
See #8005 for details.