You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider: https://go.dev/play/p/SiV_jaPuzNr
Re-Instantiation of the instantiated type of x in the code works unexpectedly.
Re-Instantiation of the instantiated type of f in the code fails as expected.
This seems inconsistent. Either we permit both or neither.
This is just a bug: there are no type params to substitute in the double-instantiated instance. The underlying is the same as the first instance. https://go.dev/play/p/6WDvAzt01tY
It seems we are just missing a check that there are no type arguments.
I suggest to fix this by reintroducing the check in instantiate.go. For example:
case *Named:
+ // Verify type parameter count for named types+ tparams := orig.TypeParams()+ if !check.validateTArgLen(pos, orig.obj.Name(), tparams.Len(), len(targs)) {+ return Typ[Invalid]+ }+ if tparams.Len() == 0 {+ // No type parameters to substitute (orig is not generic or already instantiated)+ return orig // nothing to do+ }
res = check.newNamedInstance(pos, orig, targs, expanding) // substituted lazily
This should restore the original behavior and prevent double instantiation. Happy to work on a CL if this approach looks acceptable.
Consider: https://go.dev/play/p/SiV_jaPuzNr
Re-Instantiation of the instantiated type of
x
in the code works unexpectedly.Re-Instantiation of the instantiated type of
f
in the code fails as expected.This seems inconsistent. Either we permit both or neither.
@findleyr for input
The text was updated successfully, but these errors were encountered: