go/test/fixedbugs/issue48033.go
Leonard Wang 08e2519ded cmd/compile: workaround inlining of closures with range statements
ORANGE is still not inlineable now. This CL is correct only when the range statement is statically dead, and thus not counted during the inline budget check.
If we support range statements in inlining closures in the future, may require additional processing.

Fixes #48033.

Change-Id: I28f5755c28cfa27e41daef9eff2ae332059909bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/345436
Trust: Cherry Mui <cherryyz@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
2021-09-02 12:49:05 +00:00

41 lines
554 B
Go

// compile
// 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
import (
"fmt"
"strings"
)
type app struct {
Name string
}
func bug() func() {
return func() {
// the issue is this if true block
if true {
return
}
var xx = []app{}
var gapp app
for _, app := range xx {
if strings.ToUpper("") == app.Name {
fmt.Printf("%v\n", app)
gapp = app
}
}
fmt.Println(gapp)
}
}
func main() {
bug()
}