mirror of
https://github.com/golang/go
synced 2024-11-02 11:50:30 +00:00
5a40100141
Capturing dictionary closure variables is ok. Fixes #47684 Change-Id: I049c87117915e0c5a172b9665bfac2f91064b2d4 Reviewed-on: https://go-review.googlesource.com/c/go/+/342050 Trust: Keith Randall <khr@golang.org> Trust: Dan Scales <danscales@google.com> Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Dan Scales <danscales@google.com>
19 lines
331 B
Go
19 lines
331 B
Go
// run -gcflags=-G=3
|
|
|
|
// Copyright 2021 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 main
|
|
|
|
func f[G any]() func()func()int {
|
|
return func() func()int {
|
|
return func() int {
|
|
return 0
|
|
}
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
f[int]()()()
|
|
}
|