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: unused variables not detected when captured by a closure #45054

Closed
mizusato opened this issue Mar 16, 2021 · 2 comments
Closed

cmd/compile: unused variables not detected when captured by a closure #45054

mizusato opened this issue Mar 16, 2021 · 2 comments
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone

Comments

@mizusato
Copy link

What version of Go are you using (go version)?

$ go version
go version go1.16 linux/amd64

Does this issue reproduce with the latest release?

Yes

What did you do?

This snippet compiles:

var a int
var b int
(func() {
	a, b = (func()(int,int){ return 1,1 })()
})()

What did you expect to see?

It should not compile because a and b are unused variables.
The compiler accepts it silently while go vet correctly reports an error.

@agnivade agnivade added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Mar 16, 2021
@agnivade agnivade added this to the Backlog milestone Mar 16, 2021
@agnivade
Copy link
Contributor

/cc @martisch @randall77 @mdempsky

@mdempsky
Copy link
Contributor

Duplicate of #3059.

@golang golang locked and limited conversation to collaborators Mar 16, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

4 participants