-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: seemingly identical anonymous types lead to confusing error messages #18911
Comments
Thanks for the issue. This looks like two anonymous types (declared in two separate packages, but identical) are being given different type pointers. Here's a cleaner repro: a.go:
b/b.go:
GetY gets inlined, so the type test boils down to (in
Which seems wrong. Both of those LEAs should be of the same address. I'll look more in the morning. |
These are different types. The fields |
even if so, i think the error should be more clear, because the folowing is unreadable:
probably it should be |
A better error would be better. |
Hm, so is the bug in 1.7 then? It ran the repro successfully. |
I would say so, yes. Probably something I introduced when working on binary size reductions for 1.7. I elided some unnecessary pkgpath values, and seem to remember at least once getting overenthusiastic. |
Repro runs successfully for all of 1.2 through 1.7... |
Oh. Hmm. It still fits my mental model that these are separate types, and you shouldn't be able to reach the unexported fields of another package's type, even if it's unnamed. @ianlancetaylor, @griesemer, opinions? |
Spec seems pretty clear that 1.8 is right and 1.2-1.7 are wrong. As part of type identity:
|
It looks to me like Go 1.8 is correct and earlier versions of Go were not. My guess is that Robert's new export data fixed the bug. (I also agree that a clearer error would be nice.) |
This is clearly correct in Go 1.8. There were several subtle bugs in the old export data (though I don't know for sure what fixed this. I'll assign it to me for a better error message. |
Leaving for 1.10 for improved error message (should probably mentioned declaration positions). Clearly not urgent as it's a rare case. |
Change https://golang.org/cl/116255 mentions this issue: |
Change https://golang.org/cl/123395 mentions this issue: |
Fix the panic message produced for an interface conversion error to only say "types from different packages" if they are definitely from different packges. If they may be from the same package, say "types from different scopes." Updates #18911 Fixes #26094 Change-Id: I0cea50ba31007d88e70c067b4680009ede69bab9 Reviewed-on: https://go-review.googlesource.com/123395 Reviewed-by: Austin Clements <austin@google.com>
What version of Go are you using (
go version
)?1.8rc3 (broken, also in rc1)
1.7.5 (works)
What operating system and processor architecture are you using (
go env
)?GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/k/dev/go"
GORACE=""
GOROOT="/usr/local/go"
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
CC="gcc"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build538144559=/tmp/go-build -gno-record-gcc-switches"
CXX="g++"
CGO_ENABLED="1"
What did you do?
https://play.golang.org/p/rQzEbb-u6Y
also, this is my test code with modules (i cant simulate it in playground):
test.zip
to run it, set GOPATH and run it with:
$ go run src/a.go
the output for go1.7 is:
-> main.X main.X
Hello, playground {2 3}
for go1.8:
panic: interface conversion: interface {} is struct { x int; y int }, not struct { x int; y int }
it does't work in my another project either now, after switching to 1.8rc
What did you expect to see?
old behaviour as in go 1.7 where it works
What did you see instead?
panic: interface conversion: interface {} is struct { x int; y int }, not struct { x int; y int }
The text was updated successfully, but these errors were encountered: