From 4a0c5d0cdaba94e5950effdcb0ef6b736c9556d1 Mon Sep 17 00:00:00 2001 From: Hossein Zolfi Date: Mon, 13 Sep 2021 23:23:04 +0430 Subject: [PATCH] Update work_prune.txt Add missing parenthesis in a call to "PrintVersion" in work_prune.txt --- src/cmd/go/testdata/script/work_prune.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/go/testdata/script/work_prune.txt b/src/cmd/go/testdata/script/work_prune.txt index 7347b312ee6c95..f0fb073c4b3de7 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