Skip to content
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: spurious "invalid recursive type" error in anonymous, recursive interfaces #56062

Closed
mdempsky opened this issue Oct 5, 2022 · 1 comment
Labels
compiler/runtime Issues related to the Go compiler and/or runtime. NeedsFix The path to resolution is known, but the work has not been done.
Milestone

Comments

@mdempsky
Copy link
Member

mdempsky commented Oct 5, 2022

cmd/compile crashes on the same test case as #56061:

$ cat q.go
package main

type (
	a interface { m() interface { a; b } }
	b interface { m() interface { a; b } }
)

var _ = new(interface{ a }) == new(interface{ b })

func main() {}

$ go run q.go
# command-line-arguments
./q.go:5:2: internal compiler error: invalid recursive type interface {}
...

/cc @golang/compiler

@mdempsky mdempsky added the NeedsFix The path to resolution is known, but the work has not been done. label Oct 5, 2022
@mdempsky mdempsky added this to the Unplanned milestone Oct 5, 2022
@gopherbot gopherbot added the compiler/runtime Issues related to the Go compiler and/or runtime. label Oct 5, 2022
@mdempsky
Copy link
Member Author

mdempsky commented Sep 6, 2023

Since Go 1.20, cmd/compile rejects this code with "invalid recursive type: anonymous interface refers to itself".

@mdempsky mdempsky closed this as completed Sep 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compiler/runtime Issues related to the Go compiler and/or runtime. NeedsFix The path to resolution is known, but the work has not been done.
Projects
None yet
Development

No branches or pull requests

2 participants