mirror of https://github.com/golang/go.git
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:
parent
3af92acb9f
commit
6bed304244
|
|
@ -28,7 +28,7 @@ func main() {
|
||||||
fmt.Println(n, a)
|
fmt.Println(n, a)
|
||||||
|
|
||||||
b := []byte{1, 2, 3}
|
b := []byte{1, 2, 3}
|
||||||
n = copy(f(b))
|
n = copy(g(b))
|
||||||
fmt.Println(n, b)
|
fmt.Println(n, b)
|
||||||
|
|
||||||
m := map[int]int{0: 0}
|
m := map[int]int{0: 0}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue