@mvdan noted on https://go.dev/cl/707935 that it isn't possible to link to an instantiated generic type. Indeed the test I created in https://go.dev/cl/784820 agrees.
That seems like it would be nice to support, though it isn't completely obvious to me what the output should be.
e.g., [iter.Seq[bytes.Buffer]] could yield iter.Seq[bytes.Buffer] or iter.Seq[bytes.Buffer] or some other combination.
@mvdan noted on https://go.dev/cl/707935 that it isn't possible to link to an instantiated generic type. Indeed the test I created in https://go.dev/cl/784820 agrees.
That seems like it would be nice to support, though it isn't completely obvious to me what the output should be.
e.g.,
[iter.Seq[bytes.Buffer]]could yield iter.Seq[bytes.Buffer] or iter.Seq[bytes.Buffer] or some other combination.