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: wrong type reported for generic cyclic interface #56046

Open
griesemer opened this issue Oct 4, 2022 · 0 comments
Open

cmd/compile: wrong type reported for generic cyclic interface #56046

griesemer opened this issue Oct 4, 2022 · 0 comments
Assignees
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.
Milestone

Comments

@griesemer
Copy link
Contributor

package main

import "fmt"

type I[R any] interface{ m() R }
type J interface{ I[interface{ J }] }

func main() {
	fmt.Printf("%T\n", J.m)
}

reports the wrong type when run:

func(main.J) interface {}

(reported by @mdempsky)

@griesemer griesemer added the NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. label Oct 4, 2022
@griesemer griesemer added this to the Backlog milestone Oct 4, 2022
@gopherbot gopherbot added the compiler/runtime Issues related to the Go compiler and/or runtime. label Oct 4, 2022
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. NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
Development

No branches or pull requests

3 participants