| // Copyright 2017 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 21709: range expression overly escapes. |
| func (s *S) Inc() {} // ERROR "\(\*S\).Inc s does not escape" |
| var s S // ERROR "moved to heap: s" |
| fs := []func(){ // ERROR "F1 \[\]func\(\) literal does not escape" |
| s.Inc, // ERROR "F1 s.Inc does not escape" "s escapes to heap" |
| var s S // ERROR "moved to heap: s" |
| for _, f := range []func(){ // ERROR "F2 \[\]func\(\) literal does not escape" |
| s.Inc, // ERROR "F2 s.Inc does not escape" "s escapes to heap" |