cl: function fix freevars cache

This commit is contained in:
visualfc
2024-09-06 15:45:49 +08:00
committed by Li Jie
parent fce0672282
commit 75fe9d61a3
3 changed files with 139 additions and 5 deletions

14
cl/_testrt/freevars/in.go Normal file
View File

@@ -0,0 +1,14 @@
package main
func main() {
func(resolve func(error)) {
func(err error) {
if err != nil {
resolve(err)
return
}
resolve(nil)
}(nil)
}(func(err error) {
})
}