2020-07-27 12:08:56 +07:00
|
|
|
// errorcheck -0 -m -l
|
|
|
|
|
|
|
|
// Copyright 2020 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 p
|
|
|
|
|
2020-08-14 21:30:04 -07:00
|
|
|
type t [20000]*int
|
2020-07-27 12:08:56 +07:00
|
|
|
|
|
|
|
func (t) f() {
|
|
|
|
}
|
|
|
|
|
|
|
|
func x() {
|
2020-09-09 11:09:01 +07:00
|
|
|
x := t{}.f // ERROR "t{}.f escapes to heap"
|
2020-07-27 12:08:56 +07:00
|
|
|
x()
|
|
|
|
}
|
|
|
|
|
|
|
|
func y() {
|
|
|
|
var i int // ERROR "moved to heap: i"
|
2020-09-09 11:09:01 +07:00
|
|
|
y := (&t{&i}).f // ERROR "\(&t{...}\).f escapes to heap" "&t{...} escapes to heap"
|
2020-07-27 12:08:56 +07:00
|
|
|
y()
|
|
|
|
}
|
|
|
|
|
|
|
|
func z() {
|
|
|
|
var i int // ERROR "moved to heap: i"
|
2020-09-09 11:09:01 +07:00
|
|
|
z := t{&i}.f // ERROR "t{...}.f escapes to heap"
|
2020-07-27 12:08:56 +07:00
|
|
|
z()
|
|
|
|
}
|