code:
func printvar[T any](){
var t T
fmt.Println("T", t)
}
printvar[int]()
the function instantiate in cmd/compile will instantiate a generic func,
func (check *Checker) instantiate(pos syntax.Pos, typ Type, targs []Type, poslist []syntax.Pos) (res Type)
but i look into the implement, i could not find the instantiate of temp var in generic func, just lkie var t T up there.
i do find the instantiate of recieiver, param, result. so where is the instantiate of tmp var?