aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2')
-rw-r--r--src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go22
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2 b/src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2
index e1ea5dc5dd..5293b0e445 100644
--- a/src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2
+++ b/src/cmd/go2go/testdata/go2path/src/orderedmap/orderedmap.go2
@@ -99,7 +99,7 @@ type keyValue[K, V any] struct {
// iterate returns an iterator that traverses the map.
func (m *Map[K, V]) Iterate() *Iterator[K, V] {
- sender, receiver := chans.Ranger(keyValue[K, V])()
+ sender, receiver := chans.Ranger[keyValue[K, V]]()
var f func(*node[K, V]) bool
f = func(n *node[K, V]) bool {
if n == nil {