mirror of
https://github.com/golang/go
synced 2024-11-06 12:26:11 -07:00
b649bdc7f3
We don't punctuate compiler diagnostics. Change-Id: I19e1f30fbf04f0d1bfe6648fae26beaf3a06ee92 Reviewed-on: https://go-review.googlesource.com/c/go/+/201077 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
19 lines
517 B
Go
19 lines
517 B
Go
// errorcheck -+
|
|
|
|
// Copyright 2016 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
|
|
|
|
func f(x int) func(int) int {
|
|
return func(y int) int { return x + y } // ERROR "heap-allocated closure, not allowed in runtime"
|
|
}
|
|
|
|
func g(x int) func(int) int { // ERROR "x escapes to heap, not allowed in runtime"
|
|
return func(y int) int { // ERROR "heap-allocated closure, not allowed in runtime"
|
|
x += y
|
|
return x + y
|
|
}
|
|
}
|