aboutsummaryrefslogtreecommitdiff
path: root/test/typeparam/issue50598.dir/a1.go
diff options
context:
space:
mode:
authorMatthew Dempsky <mdempsky@google.com>2022-03-23 15:09:31 -0700
committerMatthew Dempsky <mdempsky@google.com>2022-03-24 02:14:15 +0000
commit999589e14829e8c69517efa58d903bb9a7588da3 (patch)
tree9e88930af41854fba6aee1a0c3ddbd098b768f49 /test/typeparam/issue50598.dir/a1.go
parent849e42f028d20821aa68d7d37aa2e1fc3abbebe3 (diff)
downloadgo-999589e14829e8c69517efa58d903bb9a7588da3.tar.gz
go-999589e14829e8c69517efa58d903bb9a7588da3.zip
test: use dot-relative imports where appropriate
Currently, run.go's *dir tests allow "x.go" to be imported interchangeably as either "x" or "./x". This is generally fine, but can cause problems when "x" is the name of a standard library package (e.g., "fixedbugs/bug345.dir/io.go"). This CL is an automated rewrite to change all `import "x"` directives to use `import "./x"` instead. It has no effect today, but will allow subsequent CLs to update test/run.go to resolve "./x" to "test/x" to avoid stdlib collisions. Change-Id: Ic76cd7140e83b47e764f8a499e59936be2b3c876 Reviewed-on: https://go-review.googlesource.com/c/go/+/395116 Trust: Matthew Dempsky <mdempsky@google.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'test/typeparam/issue50598.dir/a1.go')
-rw-r--r--test/typeparam/issue50598.dir/a1.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/typeparam/issue50598.dir/a1.go b/test/typeparam/issue50598.dir/a1.go
index 0e63fac016..36624b4bd6 100644
--- a/test/typeparam/issue50598.dir/a1.go
+++ b/test/typeparam/issue50598.dir/a1.go
@@ -4,7 +4,7 @@
package a1
-import "a0"
+import "./a0"
func New() int {
return a0.IntBuilder{}.New()