Generating mocks (reflect mode) fails if interface contains methods with generic types · Issue #175 · uber-go/mock

Actual behavior A clear and concise description of what the bug is. Same issue from github.com/golang/mock golang/mock#677. Interface: package mypkg type S struct{} type GS[T any] struct { T T } ty...