go/types, types2: include type arguments in instantiated type cycle errors#78006
go/types, types2: include type arguments in instantiated type cycle errors#78006davidteather wants to merge 1 commit intogolang:masterfrom
Conversation
…rrors When reporting layout cycles involving instantiated generic types, the error chain omitted type arguments, making the output confusing since the generic type itself makes no reference to the recursive type. Fixes golang#75022
|
This PR (HEAD: 3f00ca4) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/752580. Important tips:
|
|
Message from Gopher Robot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be During May-July and Nov-Jan the Go project is in a code freeze, during which Please don’t reply on this GitHub thread. Visit golang.org/cl/752580. |
When reporting layout cycles involving instantiated generic types, the
error chain omitted type arguments, making the output confusing since
the generic type itself makes no reference to the recursive type.
Fixes #75022