Go version
go version go1.27-devel_996b985008 Wed Apr 8 14:21:41 2026 -0700 darwin/arm64
Output of go env in your module/workspace:
AR='ar'
CC='cc'
CGO_CFLAGS='-O2 -g'
CGO_CPPFLAGS=''
CGO_CXXFLAGS='-O2 -g'
CGO_ENABLED='1'
CGO_FFLAGS='-O2 -g'
CGO_LDFLAGS='-O2 -g'
CXX='c++'
GCCGO='gccgo'
GO111MODULE=''
GOARCH='arm64'
GOARM64='v8.0'
GOAUTH='netrc'
GOBIN=''
GOCACHE='/Users/mitsuoheijo/Library/Caches/go-build'
GOCACHEPROG=''
GODEBUG=''
GOENV='/Users/mitsuoheijo/Library/Application Support/go/env'
GOEXE=''
GOEXPERIMENT=''
GOFIPS140='off'
GOFLAGS=''
GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/bq/s3vkkxm17jq79lx5qy3856zh0000gn/T/go-build2761551716=/tmp/go-build -gno-record-gcc-switches -fno-common'
GOHOSTARCH='arm64'
GOHOSTOS='darwin'
GOINSECURE=''
GOMOD='/Users/mitsuoheijo/repos/github.com/golang/go/src/go.mod'
GOMODCACHE='/Users/mitsuoheijo/go/pkg/mod'
GONOPROXY=''
GONOSUMDB=''
GOOS='darwin'
GOPATH='/Users/mitsuoheijo/go'
GOPRIVATE=''
GOPROXY='https://proxy.golang.org,direct'
GOROOT='/Users/mitsuoheijo/repos/github.com/golang/go'
GOSUMDB='sum.golang.org'
GOTELEMETRY='local'
GOTELEMETRYDIR='/Users/mitsuoheijo/Library/Application Support/go/telemetry'
GOTMPDIR=''
GOTOOLCHAIN='auto'
GOTOOLDIR='/Users/mitsuoheijo/repos/github.com/golang/go/pkg/tool/darwin_arm64'
GOVCS=''
GOVERSION='go1.27-devel_996b985008 Wed Apr 8 14:21:41 2026 -0700'
GOWORK=''
PKG_CONFIG='pkg-config'
What did you do?
https://go.dev/play/p/aBf7_2IDaTe?v=gotip
package main
import "iter"
func pairs() iter.Seq2[int, struct{}] {
return func(yield func(int, struct{}) bool) {
yield(1, struct{}{})
}
}
func keys() iter.Seq[int] {
return func(yield func(int) bool) {
for k := range pairs() {
if !yield(k) {
return
}
}
}
}
func main() {
for range keys() {
}
}
What did you see happen?
./prog.go:7:8: internal error: DwarfFixupTable has orphaned fixup on targeting main.keys.func1-range1 relidx=9 dclidx=1
What did you expect to see?
build succeeds
bisected 70dc75b
related d7b6fb4
cc @derekparker
Go version
go version go1.27-devel_996b985008 Wed Apr 8 14:21:41 2026 -0700 darwin/arm64
Output of
go envin your module/workspace:What did you do?
https://go.dev/play/p/aBf7_2IDaTe?v=gotip
What did you see happen?
What did you expect to see?
build succeeds
bisected 70dc75b
related d7b6fb4
cc @derekparker