From: Hossein Zolfi Date: Mon, 13 Sep 2021 19:16:28 +0000 (+0000) Subject: cmd/go: add missing parenthesis in a call to "PrintVersion" X-Git-Tag: go1.18beta1~1368 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=960d036f8f7387de9b06fde6601af43ecaa650e6;p=gostls13.git cmd/go: add missing parenthesis in a call to "PrintVersion" For #45713 Change-Id: I16e548e6c10e58da815d08897f4ba5d71eeb17e4 GitHub-Last-Rev: 4a0c5d0cdaba94e5950effdcb0ef6b736c9556d1 GitHub-Pull-Request: golang/go#48360 Reviewed-on: https://go-review.googlesource.com/c/go/+/349599 Reviewed-by: Bryan C. Mills Trust: Bryan C. Mills Trust: Jay Conrod Run-TryBot: Bryan C. Mills TryBot-Result: Go Bot --- diff --git a/src/cmd/go/testdata/script/work_prune.txt b/src/cmd/go/testdata/script/work_prune.txt index 7347b312ee..f0fb073c4b 100644 --- a/src/cmd/go/testdata/script/work_prune.txt +++ b/src/cmd/go/testdata/script/work_prune.txt @@ -59,7 +59,7 @@ package b import "example.com/q" func TestB() { - q.PrintVersion + q.PrintVersion() } -- p/go.mod -- module example.com/p