-
```
package main
type s[T any] struct {
a T
}
func (x s[T]) f() T {
return x.a
}
func main() {
x := s[int]{a:7}
f := x.f
f()
}
```
```
% ../bin/go run -gcflags=-G=3 ~/gowork/tmp6…
-
Calling `Close` after `CloseWithError` (or `CloseWithError` multiple times) overwrites the stored error in `io.pipe`.
Opening an issue for discussion first, since there is test coverage verifying …
-
```
func (m *Map) LoadOrStore(key, value interface{}) (actual interface{}, loaded bool)
```
The proposal states:
1. That LoadOrStore accept an optional argument that forces it to interpret `va…
pjebs updated
2 years ago
-
Hi,
I have now suddenly big problems booting linux from hd (ssd) since booting to the unused Windows (dualboot). Suddenly nothing could be booted anymore. Was there a new uefi update in win updates?…
dr-ni updated
2 years ago
-
Same for other int sizes (with corresponding most negative value).
Right now panics sometimes, not others.
Should at least be consistent.
Should it just be -128? Or panic?
Assigned to gri for disc…
-
This issue is for discussion of our [Go 2 error values proposal](https://golang.org/design/29934-error-values), which is based on our draft designs for error [information](https://golang.org/design/go…
-
# Problem encountered
What I am seeing is that after annoucing a node and having it promoted to `ValidatorStatusTendermint`, a vega-node in non-validator mode will fall out of consensus on the bloc…
-
### Background
* Reported by [Aleximarus](https://discord.com/channels/745675889622384681/745678330933805157/829122073326649415) in the Lich discord
* Player is experiencing issue with `crossing-tra…
-
Refs [announcement from Synopsys](https://go2.synopsys.com/e/es?s=1061282284&e=180762&elqTrackId=44bb2559843e473d84fd394836cc32d5&elq=7a3fe826b8f547a98421eb7078c308bd&elqaid=6066&elqat=1)
> On or a…
-
### What did you do?
Take the following simple Go program:
```
package main
import (
"fmt"
)
func main() {
s := "i'm a normal string"
var m interface{}
m = s
getType(m)
}…