You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/usr/local/go/src/runtime/msize_allocheaders.go:16:6: roundupsize redeclared in this block
/usr/local/go/src/runtime/msize.go:13:6: other declaration of roundupsize
/usr/local/go/src/runtime/map.go:357:25: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:191:41: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:197:56: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:210:48: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:218:32: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/string.go:273:36: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/string.go:288:38: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
What did you expect to see?
No errors
The text was updated successfully, but these errors were encountered:
Unlike many projects, the Go project does not use GitHub Issues for general discussion or asking questions. GitHub Issues are used for tracking bugs and proposals only.
Go version
go version go1.22.0 linux/amd64
Output of
go env
in your module/workspace:What did you do?
After rebooting my ubuntu machine and loaded my MS Devcontainers. I can't compile my api project anymore.
I haven't change any code so I'm not sure I've introduced any errors.
Things I've tried in an attempt to fix this error:
I have other Devcontainers set up the same way and they build as usual but this api is using some additional crypto packages.
go 1.22
require github.com/gorilla/mux v1.8.0
require (
github.com/go-redis/redis v6.15.9+incompatible
github.com/google/uuid v1.3.0
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
github.com/microcosm-cc/bluemonday v1.0.25
github.com/swaggo/swag v1.8.1
golang.org/x/crypto v0.14.0
)
require (
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/spec v0.20.6 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.27.10 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/tools v0.9.3 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
What did you see happen?
runtime
/usr/local/go/src/runtime/msize_allocheaders.go:16:6: roundupsize redeclared in this block
/usr/local/go/src/runtime/msize.go:13:6: other declaration of roundupsize
/usr/local/go/src/runtime/map.go:357:25: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:191:41: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:197:56: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:210:48: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/slice.go:218:32: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/string.go:273:36: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
/usr/local/go/src/runtime/string.go:288:38: too many arguments in call to roundupsize
have (uintptr, bool)
want (uintptr)
What did you expect to see?
No errors
The text was updated successfully, but these errors were encountered: