What version of Go are you using (go version)?
$ go version
go version go1.18beta1 linux/amd64
Does this issue reproduce with the latest release?
Yes, assuming the latest version is gotip.
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=""
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/dev/.cache/go-build"
GOENV="/home/dev/.config/go/env"
GOEXE=""
GOEXPERIMENT=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOINSECURE=""
GOMODCACHE="/home/dev/go/pkg/mod"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/dev/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/dev/sdk/go1.18beta1"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/dev/sdk/go1.18beta1/pkg/tool/linux_amd64"
GOVCS=""
GOVERSION="go1.18beta1"
GCCGO="gccgo"
GOAMD64="v1"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/workspace/dev/go.mod"
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 -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build929647144=/tmp/go-build -gno-record-gcc-switches"
What did you do?
This came up as I was trying to write some table driven unit tests for some functions that allow for generics. I've reduced the problem to this:
https://gotipplay.golang.org/p/0FYmUq0bzvr
The issue appears only if the a type is declared with the same name within multiple functions of a package file, and there is a field on the types with the same name, but different signature.
If I rename one of the types in the caller* functions, I do not see the issue.
What did you expect to see?
Compiled code.
What did you see instead?
# command-line-arguments
./issue.go:22:14: internal compiler error: found illegal assignment FUNC-func(int) error -> main.Fn[int];
Please file a bug report including a short program that triggers the error.
https://golang.org/issue/new
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes, assuming the latest version is
gotip.What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
This came up as I was trying to write some table driven unit tests for some functions that allow for generics. I've reduced the problem to this:
https://gotipplay.golang.org/p/0FYmUq0bzvr
The issue appears only if the a type is declared with the same name within multiple functions of a package file, and there is a field on the types with the same name, but different signature.
If I rename one of the types in the
caller*functions, I do not see the issue.What did you expect to see?
Compiled code.
What did you see instead?