-
For the following program
```Go
package p
func f[F interface{type *Q}, G interface{type *R}, Q, R any](q Q, r R) {}
func _() {
f[*float64](1, 2)
}
```
type inference infers for the call o…
-
# Bug Report:
go get -u ./...
go mod tidy
run test file that imports gogm via intellij IDE
I get:
# github.com/mindstand/gogm/v2
/.../go/pkg/mod/github.com/mindstand/gogm/v2@v2.3.5/index_…
-
I would like the calling code to have the optional ability to determine when the called goroutine is finished. For example, here the main function does some preparation, giving part of the tasks to th…
-
This program (https://go2goplay.golang.org/p/rF1kHzbn4Fc):
```
type A[T any] struct{}
func (*A[T]) f(T) {}
type B[T any] struct{ A[T] }
func main() {
var b B[string]
b.A.f("") // ok
b…
-
The design draft ([Appendix > Generic type aliases](https://go.googlesource.com/proposal/+/refs/heads/master/design/go2draft-type-parameters.md#generic-type-aliases)) indicates that the following woul…
-
### What version of Go are you using (`go version`)?
$ go version
go version devel +d014fca6d4 Wed Jul 1 20:30:10 2020 +0000 linux/amd64
### Does this issue reproduce with the latest release?…
-
Is there any way of using constraints as return types where the value being returned is instantiated in the body of the function?
Or does this fall into [Possible future step: permitting constraint…
-
# Affected Daml version
All versions that support exception (to be confirmed)
# Bug description
- In a try block.
- Create a contract
- Throw an exception with the Contract Id of …
-
### What version of Go are you using (`go version`)?
$ go version
go version devel +9cd52cf2a9 Tue Apr 13 00:32:27 2021 +0000 linux/amd64
### Does this issue reproduce with the latest r…
-
Problem occurs only in widget test on windows. While running the application in windows debug/release mode render issue is not observed.
**Widget creation file.**
```
import 'package:flutter/mate…