-
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: dev.typeparams: struct with generic parameter triggers 0xb01dfacedebac1e panic on macos #47272
Comments
This runs successfully with unified IR:
|
CC @randall77 @danscales @mdempsky In general it is too early to report bugs against the dev.typeparams branch. The branch is under very active development. Fixes are welcome and useful, bug reports are something of a distraction. I'll let this one stand since you already filed it. Thanks. |
Ah sorry, I made a bad assumption based on the fact that gopls has some support for type parameters. I was doing some experimentation and ran into this. I'll hold off on filing anything else related to typeparams |
FWIW, I think the issue reports are still useful. Ideally if we can get them as minimized, standalone test cases (i.e., no imports). It's easy enough now to add regress tests that are known to be currently failing, and then we can fix them as we get to them. |
Thanks for the issue, and sorry for the delay in triaging. This is a good example. Some of our dictionary code is still missing cases where type args are interfaces. We probably think of this as not so common, but here's a good example where a type arg is 'error'. I'm working on this, and looking for other bugs related to type args which are interface. |
Fixed by b7b790a |
Sorry, I'm not exactly sure how to categorize this because the panic happens at runtime but the issue seems to be the result of something funky that happened during compilation:
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
N/A
What operating system and processor architecture are you using (
go env
)?Running on:
macOS Big Sur 11.4
with2.6 GHz 6-Core Intel Core i7
and16 GB 2667 MHz DDR4
go env
OutputWhat did you do?
Ran this code with
go run -gcflags="-G=3" .
:What did you expect to see?
What did you see instead?
Apparently related to 0xb01dfacedebac1e
Notes:
fmt.Println(x, y)
withfmt.Println(x)
avoids the above faulty := Err[int, error](errors.New("test"))
withy := Err[int, string]("test")
avoids the faultThis seems to be related to instantiating the generic
Result[T,E any]
with anE
oferror
and then trying to use reflection on that value fromfmt.Sprintf("Err(%v)", <val of type E>)
The text was updated successfully, but these errors were encountered: