go icon indicating copy to clipboard operation
go copied to clipboard

The Go programming language

Results 868 go issues
Sort by recently updated
recently updated
newest added

### Go version go version go1.20.13 windows/386 ### Output of `go env` in your module/workspace: ```shell set GO111MODULE= set GOARCH=386 set GOBIN= set GOCACHE=C:\Users\jiayi\AppData\Local\go-build set GOENV=C:\Users\jiayi\AppData\Roaming\go\env set GOEXE=.exe set GOEXPERIMENT=...

WaitingForInfo
NeedsInvestigation

We should track the source positions for the code we're in the process of type-checking so that we can report a position when panicking. This won't simplify debugging (we can...

NeedsFix

### Go version devel go1.23-7492290887 ### Output of `go env` in your module/workspace: ```shell set GO111MODULE= set GOARCH=amd64 set GOBIN= set GOEXE=.exe set GOEXPERIMENT= set GOFLAGS= set GOHOSTARCH=amd64 set GOHOSTOS=windows...

NeedsInvestigation

### Go version go version go1.22.0 windows/amd64 ### Output of `go env` in your module/workspace: ```shell set GO111MODULE=on set GOARCH=wasm set GOBIN= set GOCACHE=C:\Users\zxilly\AppData\Local\go-build set GOENV=C:\Users\zxilly\AppData\Roaming\go\env set GOEXE= set GOEXPERIMENT=...

NeedsInvestigation
arch-wasm

``` % cat x.go package p func f(int) string func g() { b := f(1) collect := func(min, max, stop int) []int { return nil } b := f(2) _...

NeedsFix
gabywins

### Go version go version go1.22.4 darwin/arm64 ### Output of `go env` in your module/workspace: ```shell GO111MODULE='auto' GOARCH='arm64' GOBIN='' GOCACHE='/Users/romain.marcadier/Library/Caches/go-build' GOENV='/Users/romain.marcadier/Library/Application Support/go/env' GOEXE='' GOEXPERIMENT='' GOFLAGS='' GOHOSTARCH='arm64' GOHOSTOS='darwin' GOINSECURE='' GOMODCACHE='/Users/romain.marcadier/go/pkg/mod' GONOPROXY='github.com/DataDog'...

FixPending
gabywins

``` % cat /tmp/x.go package main import "fmt" func main() { fmt.Printf☹("hello world") } % go build /tmp/x.go # command-line-arguments /tmp/x.go:6:6: undefined: fmt.Printf☹ /tmp/x.go:6:12: invalid character U+2639 '☹' in identifier...

NeedsFix
compiler/runtime
gabywins

### What version of Go are you using (`go version`)? $ go version go version go1.18rc1 linux/amd64 ### What did you do? ```Go type T[T any] struct {} // okay...

NeedsFix

This is a reminder issue to clean up handling of method receivers in Checker.funcType. Receiver parameter handling relies on delayed instantiation and uses constraint type inference. At least the latter...

NeedsFix
early-in-cycle