-
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
spec: clarify rule 3 for selector expressions #21738
Comments
/cc @griesemer @mdempsky |
btw, maybe here |
btw2, there is a line is spec:
I looks here the |
IMO: That |
I think this is working as intended, but perhaps the spec could be made clearer. I believe the intent is that cmd/compile and go/types both allow gccgo also allows it as shorthand for |
The crux of the issue appears to be that the spec recursively predicating on whether The simplest solution I see at the moment is to merge rule 3 into rule 1 by adding "underlying" as a qualifier at the beginning:
Edit: Actually, no, that doesn't work. It needs to be phrased to disallow selecting a method. |
Here's a related test case:
In this case, Consistent with this interpretation, go/types rejects the expression cmd/compile and gccgo both accept it, however. |
This (original example) is working as intended. It is definitively not the intent of the spec to permit arbitrarily deep automatic dereferencing. @go101 It probably should say defined rather than named pointer type in rule 3 otherwise the rule overlaps partly with the first one and generally becomes somewhat meaningless. (Somewhat unrelated, even though we now have defined and alias types, we still have named types: all the types that have a name). Thus the spec needs to be clarified. Regarding @mdempsky's 2nd example, go/types is correct and the compilers are wrong. Per rule 3 in https://tip.golang.org/ref/spec#Selectors, (Named (defined) pointer types with methods are painful and complicated. This has been discussed in the past and I proposed that perhaps named (defined) pointer types should be outlawed. See #8590 for more examples.) |
Filed #21934 compiler issue. |
Change https://golang.org/cl/197561 mentions this issue: |
Passed toolstash-check. Updates #21738 Fixes #21934 Change-Id: I59f0b2c9890146565ff913b04aeeeff7dc7a4499 Reviewed-on: https://go-review.googlesource.com/c/go/+/197561 Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (
go version
)?go version go1.9 linux/amd64
Does this issue reproduce with the latest release?
yes
What did you do?
What did you expect to see?
compile okay.
Go spec says
so as
(*pp).x
is valid,pp.x
should be also valid.What did you see instead?
compile failed
The text was updated successfully, but these errors were encountered: