What version of Go are you using (go version)?
$ go version
go version go1.21.3 linux/amd64
Does this issue reproduce with the latest release?
Yes, including tip. Also on Go Playground.
What operating system and processor architecture are you using (go env)?
go env Output
$ go env
GO111MODULE=''
GOARCH='amd64'
GOBIN=''
GOCACHE='/home/mitar/.cache/go-build'
GOENV='/home/mitar/.config/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFLAGS=''
GOHOSTARCH='amd64'
GOHOSTOS='linux'
GOINSECURE=''
GOMODCACHE='/home/mitar/.go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='linux'
GOPATH='/home/mitar/.go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/usr/local/go'
GOSUMDB='sum.golang.org'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/usr/local/go/pkg/tool/linux_amd64'
GOVCS=''
GOVERSION='go1.21.3'
GCCGO='/usr/bin/gccgo'
GOAMD64='v1'
AR='ar'
CC='gcc'
CXX='g++'
CGO_ENABLED='1'
GOMOD='/dev/null'
GOWORK=''
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
PKG_CONFIG='pkg-config'
GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build1231630685=/tmp/go-build -gno-record-gcc-switches'
What did you do?
I have the following code to get name of a function passed as a pointer:
package main
import (
"fmt"
"reflect"
"runtime"
)
func name(f any) string {
fn := runtime.FuncForPC(reflect.ValueOf(f).Pointer())
if fn == nil {
return ""
}
return fn.Name()
}
func FuncName() {}
type Foo struct{}
func (_ *Foo) FuncName() {}
func (f *Foo) Get() string {
return name(f.FuncName)
}
type Bar[T any] struct{}
func (_ *Bar[T]) FuncName() {}
func (b *Bar[T]) Get() string {
return name(b.FuncName)
}
func main() {
fmt.Println(name(FuncName))
fmt.Println(name((&Foo{}).FuncName))
fmt.Println((&Foo{}).Get())
fmt.Println(name((&Bar[int]{}).FuncName))
fmt.Println((&Bar[int]{}).Get())
}
What did you expect to see?
main.FuncName
main.(*Foo).FuncName-fm
main.(*Foo).FuncName-fm
main.(*Bar[...]).FuncName-fm
main.(*Bar[...]).FuncName-fm
What did you see instead?
main.FuncName
main.(*Foo).FuncName-fm
main.(*Foo).FuncName-fm
main.(*Bar[...]).FuncName-fm
main.(*Bar[...]).Get.func1
What version of Go are you using (
go version)?Does this issue reproduce with the latest release?
Yes, including tip. Also on Go Playground.
What operating system and processor architecture are you using (
go env)?go envOutputWhat did you do?
I have the following code to get name of a function passed as a pointer:
What did you expect to see?
What did you see instead?