We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
gccgo successfully compiles the following program:
package a var _ *i
while gc and go/types reject it with:
go.go:2: undefined: i go.go:2:7: undeclared name: i
gccgo must reject it too. #11522
The text was updated successfully, but these errors were encountered:
@paranoiacblack
Sorry, something went wrong.
CL https://golang.org/cl/13031 mentions this issue.
golang/gofrontend@6fb7c35
compiler: Verify pointer type's underlying type.
30aac3c
Fixes golang/go#11547. Reviewed-on: https://go-review.googlesource.com/13031 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@226598 138bc75d-0d04-0410-961f-82ee72b054a4
1a16d27
Fixes golang/go#11547. Reviewed-on: https://go-review.googlesource.com/13031 From-SVN: r226598
No branches or pull requests
gccgo successfully compiles the following program:
while gc and go/types reject it with:
gccgo must reject it too.
#11522
The text was updated successfully, but these errors were encountered: