]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: don't set range expr key/value type if already set
authorCuong Manh Le <cuong.manhle.vn@gmail.com>
Mon, 3 Apr 2023 04:18:45 +0000 (11:18 +0700)
committerGopher Robot <gobot@golang.org>
Wed, 5 Apr 2023 17:48:15 +0000 (17:48 +0000)
Unified IR already records the correct type for them.

Fixes #59378

Change-Id: I275c45b48f67bde55c8e2079d60b5868d0acde7f
Reviewed-on: https://go-review.googlesource.com/c/go/+/481555
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/typecheck/stmt.go
test/fixedbugs/issue59378.go [new file with mode: 0644]

index eb131753846ca22d81901dbf4459ae290ccb9cd4..3ad116144b2a79addbe30cfd2779441253fd985b 100644 (file)
@@ -72,7 +72,7 @@ func typecheckrangeExpr(n *ir.RangeStmt) {
 
        do := func(nn ir.Node, t *types.Type) {
                if nn != nil {
-                       if ir.DeclaredBy(nn, n) {
+                       if ir.DeclaredBy(nn, n) && nn.Type() == nil {
                                nn.SetType(t)
                        } else if nn.Type() != nil {
                                if op, why := Assignop(t, nn.Type()); op == ir.OXXX {
diff --git a/test/fixedbugs/issue59378.go b/test/fixedbugs/issue59378.go
new file mode 100644 (file)
index 0000000..8ff198e
--- /dev/null
@@ -0,0 +1,26 @@
+// compile
+
+// Copyright 2023 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package p
+
+func f() {
+       F([]int{}, func(*int) bool { return true })
+}
+
+func F[S []E, E any](a S, fn func(*E) bool) {
+       for _, v := range a {
+               G(a, func(e E) bool { return fn(&v) })
+       }
+}
+
+func G[E any](s []E, f func(E) bool) int {
+       for i, v := range s {
+               if f(v) {
+                       return i
+               }
+       }
+       return -1
+}