1
0
mirror of https://github.com/golang/go synced 2024-09-29 18:24:29 -06:00

cmd/go: add missing parenthesis in a call to "PrintVersion"

For #45713

Change-Id: I16e548e6c10e58da815d08897f4ba5d71eeb17e4
GitHub-Last-Rev: 4a0c5d0cda
GitHub-Pull-Request: golang/go#48360
Reviewed-on: https://go-review.googlesource.com/c/go/+/349599
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Trust: Bryan C. Mills <bcmills@google.com>
Trust: Jay Conrod <jayconrod@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
This commit is contained in:
Hossein Zolfi 2021-09-13 19:16:28 +00:00 committed by Jay Conrod
parent 81a4fe6fd2
commit 960d036f8f

View File

@ -59,7 +59,7 @@ package b
import "example.com/q"
func TestB() {
q.PrintVersion
q.PrintVersion()
}
-- p/go.mod --
module example.com/p