-
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 semantics of interface to interface assignment #5288
Comments
I think it's a simple value assignment once one assumes that type RuntimeInterface struct { /* filtered or unexported fields */ } Per analogiam, I don't think that the len() and cap() of LHS in `sliceL = sliceR` are specified to become the "dynamic" values of the RHS. Neither for strings etc. IMO #WorkingAsIntended |
I don't think you can make the comparison between slices/strings and interfaces. The assignment of interfaces include an implicit conversion that isn't present on slice/string assignments. For example, you can assign an io.WriteCloser to an io.Writer without a cast, even though they are 2 different types. |
Owner changed to @griesemer. |
We should try to clarify this soon - it's central to Go. The language around interfaces - while intuitively mostly clear - is imprecise in various ways.
When clarifying this, confirm that #17991 is adequately covered (an any other open issues in this space). |
Bumping to Go 1.9, but feel free to send a CL this week for Go 1.8 if you want. |
The text was updated successfully, but these errors were encountered: