-
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/internal: nil pointer using labels on a function using generics. #48462
Comments
Build ok with unified IR. |
Ah yes it is. Duplicated then. You can close it if you want, I'll track the others. Thanks! |
@ALTree I think we should keep this open, as |
Thank you. The thread at #46704 is quite hard to read, I have to say. There are no reproducers (they're in gerrit), no crash messages (so the thread cannot be found using the github search bar by people rediscovering these issues) and no checklist with a list of the issues and their status (fixed, unfixed, supposedly fixed but still triggerable)... Overall I think it may be beneficial to reassess #46704 as a whole and maybe close it (after opening one issue for each remaining problem, with reproducer and searchable crash message / stacktrace). Because it's starting to get pretty confusing. |
Change https://golang.org/cl/350696 mentions this issue: |
I spotted a few other problems too, but all of them were solved using the Just so can take those cases into account. Thanks. |
Change https://golang.org/cl/350911 mentions this issue: |
Yes, actually, I had been meaning to close #46704, for some of the reasons you mention, but especially now that all of the issues mentioned are fixed (esp. now that the extra fix in this issue is in). |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I tried to use a generic function that uses labels from another package.
Example code here
What did you expect to see?
A successful build.
What did you see instead?
Remark: I think this is because of the labels in the generic function. See the last code attached to the play.golang.com. If you remove the labels, it works.
Remark 2: If you place the
Unique
function in thepackage main
file, then it works. If you use that function from another package then it shows the panic message above.The text was updated successfully, but these errors were encountered: