Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/compile: allows to define blank methods on builtin types #11366

Closed
dvyukov opened this issue Jun 23, 2015 · 1 comment
Closed

cmd/compile: allows to define blank methods on builtin types #11366

dvyukov opened this issue Jun 23, 2015 · 1 comment
Milestone

Comments

@dvyukov
Copy link
Member

dvyukov commented Jun 23, 2015

go tool compile successfully compiles the following program:

package a

func (x int) _() {
    println(x)
}

func (x string) _() {
    println(x)
}

It must not be compiled.

go version devel +514014c Thu Jun 18 15:54:35 2015 +0200 linux/amd64

@ianlancetaylor ianlancetaylor added this to the Go1.6 milestone Jul 11, 2015
@gopherbot
Copy link

CL https://golang.org/cl/16866 mentions this issue.

@golang golang locked and limited conversation to collaborators Dec 1, 2016
@rsc rsc removed their assignment Jun 23, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants