mirror of
https://github.com/golang/go
synced 2024-11-05 16:36:10 -07:00
7cfa8310c7
Escape analysis needs the right curfn value on a dclfunc node, otherwise it will not analyze the function. When generating method value wrappers, we forgot to set the curfn correctly. Fixes #5753. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/10383048
30 lines
502 B
Go
30 lines
502 B
Go
// run
|
|
|
|
// Copyright 2013 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.
|
|
|
|
// issue 5753: bad typecheck info causes escape analysis to
|
|
// not run on method thunks.
|
|
|
|
package main
|
|
|
|
type Thing struct{}
|
|
|
|
func (t *Thing) broken(s string) []string {
|
|
foo := [1]string{s}
|
|
return foo[:]
|
|
}
|
|
|
|
func main() {
|
|
t := &Thing{}
|
|
|
|
f := t.broken
|
|
s := f("foo")
|
|
_ = f("bar")
|
|
if s[0] != "foo" {
|
|
panic(`s[0] != "foo"`)
|
|
}
|
|
|
|
}
|