mirror of
https://github.com/golang/go
synced 2024-11-15 02:00:33 -07:00
1e12c63aac
ir.VisitFuncsBottomUp returns recursive==true for functions which call themselves. It also returns any closures inside that function. We don't want to report the closures as recursive, as they really aren't. Only the containing function is recursive. Fixes #54159 Change-Id: I3b4d6710a389ec1d6b250ba8a7065f2e985bdbe1 Reviewed-on: https://go-review.googlesource.com/c/go/+/463233 Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Keith Randall <khr@google.com> Run-TryBot: Keith Randall <khr@golang.org>
23 lines
586 B
Go
23 lines
586 B
Go
// errorcheck -0 -m=2
|
|
|
|
// 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 main
|
|
|
|
func run() { // ERROR "cannot inline run: recursive"
|
|
f := func() { // ERROR "can inline run.func1 with cost .* as:.*" "func literal does not escape"
|
|
g() // ERROR "inlining call to g"
|
|
}
|
|
f() // ERROR "inlining call to run.func1" "inlining call to g"
|
|
run()
|
|
}
|
|
|
|
func g() { // ERROR "can inline g with cost .* as:.*"
|
|
}
|
|
|
|
func main() { // ERROR "can inline main with cost .* as:.*"
|
|
run()
|
|
}
|