aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs
diff options
context:
space:
mode:
authorCuong Manh Le <cuong.manhle.vn@gmail.com>2023-04-03 11:18:45 +0700
committerGopher Robot <gobot@golang.org>2023-04-05 17:48:15 +0000
commit1e5955aabdacca1e37dc5326aaa9cefea863ee64 (patch)
tree7ff934052ac66f33ca045f8165488d7ad85d1a1a /test/fixedbugs
parente7d59ed204bbb0e70fe1898abb1b82fdf7c25a1f (diff)
downloadgo-1e5955aabdacca1e37dc5326aaa9cefea863ee64.tar.xz
cmd/compile: don't set range expr key/value type if already set
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>
Diffstat (limited to 'test/fixedbugs')
-rw-r--r--test/fixedbugs/issue59378.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/fixedbugs/issue59378.go b/test/fixedbugs/issue59378.go
new file mode 100644
index 0000000000..8ff198eaa7
--- /dev/null
+++ b/test/fixedbugs/issue59378.go
@@ -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
+}