test: fix issue 15992 test wrong function call

Change-Id: I623ae5faffce456b34d97a2a0aa277ecbf1990f0
Reviewed-on: https://go-review.googlesource.com/c/go/+/217699
Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
Cuong Manh Le 2020-02-05 10:32:44 +07:00 committed by Matthew Dempsky
parent 3af92acb9f
commit 6bed304244

View File

@ -28,7 +28,7 @@ func main() {
fmt.Println(n, a)
b := []byte{1, 2, 3}
n = copy(f(b))
n = copy(g(b))
fmt.Println(n, b)
m := map[int]int{0: 0}