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.
At tip, cmd/compile rejects this package with "missing arguments to copy":
package p func f() ([]byte, string) { return nil, "" } var _ = copy(f())
The same package is accepted by go/types and gccgo, and seemingly valid according to the spec.