What version of Go are you using (go version)?
$ go version
go version go1.19 linux/amd64
Does this issue reproduce with the latest release?
Yes. it does
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/vahid/.cache/go-build"
GOENV="/home/vahid/.config/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GOMODCACHE="/home/vahid/go/pkg/mod"
GONOPROXY="github.com/dolphinfms/*"
GONOSUMDB="github.com/dolphinfms/*"
GOOS="linux"
GOPATH="/home/vahid/go/"
GOPRIVATE="github.com/dolphinfms/*"
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/usr/local/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64"
GOVCS=""
GOVERSION="go1.19"
GCCGO="gccgo"
GOAMD64="v1"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/dev/null"
GOWORK=""
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build4148583324=/tmp/go-build -gno-record-gcc-switches"
What did you do?
https://go.dev/play/p/iTbFKExhVeZ
What did you expect to see?
B(&Imp[int64]{}) doesn't work and show cannot infer T error but B[int64](&Imp[int64]{}) works. But it can auto infer. in this example, the T of B is always int64
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes. it does
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
https://go.dev/play/p/iTbFKExhVeZ
What did you expect to see?
B(&Imp[int64]{})doesn't work and showcannot infer Terror butB[int64](&Imp[int64]{})works. But it can auto infer. in this example, theTofBis alwaysint64