cmd/compile: assertion failed: cmd/compile/internal/noder/reader.go:765 #72873
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
WaitingForInfo
Issue is not actionable because of missing required information, which needs to be provided.
Go version
1.24.1
Output of
go env
in your module/workspace:What did you do?
I exposed a function to an interface that my implementation struct already had implemented and it crashed the compiler.
What did you see happen?
I get a fatal error on both 1.24.1 and gotip:
What did you expect to see?
I've been trying to reproduce a minimal example since I can't publish my code but I can't seem to get it crashing. I am fairly certain it has to do with interplay between separate packages since I've tried pulling out the relevant code into a single package and building that and it seems to work fine. When I build my main program I get an error like:
I think it might have to do with the order in which type aliases are resolved across package boundaries, see the assertion that this corresponds to:
go/src/cmd/compile/internal/noder/reader.go
Lines 753 to 773 in 7e3d2aa
It would be helpful if someone more knowledgeable could take a look and give me some hints on what I might try to get a minimal example.
The text was updated successfully, but these errors were encountered: